diff options
| author | William Boman <william@redwill.se> | 2023-10-11 15:33:10 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2025-02-16 09:49:17 +0100 |
| commit | 40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa (patch) | |
| tree | 1c092b13b2c40c693db87f040410411977990cef /tests/fixtures/receipts/1.0.json | |
| parent | fix(package): support older receipt structures (#1520) (diff) | |
| download | mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar.gz mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar.bz2 mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar.lz mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar.xz mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.tar.zst mason-40bb6ddfa84b91f58a53f9d92ce7a3ce0c57b9aa.zip | |
refactor(receipt): change receipt structure and remove old builder APIs (#1521)
Diffstat (limited to 'tests/fixtures/receipts/1.0.json')
| -rw-r--r-- | tests/fixtures/receipts/1.0.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/fixtures/receipts/1.0.json b/tests/fixtures/receipts/1.0.json new file mode 100644 index 00000000..e16d68ef --- /dev/null +++ b/tests/fixtures/receipts/1.0.json @@ -0,0 +1,23 @@ +{ + "schema_version": "1.0", + "primary_source": { + "type": "npm", + "package": "@angular/language-server" + }, + "links": { + "bin": { + "ngserver": "node_modules/.bin/ngserver" + } + }, + "metrics": { + "start_time": 1694752057715, + "completion_time": 1694752066467 + }, + "secondary_sources": [ + { + "type": "npm", + "package": "typescript" + } + ], + "name": "angular-language-server" +} |
