@tiangong-lca/cli 0.0.17 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/src/cli.js +3 -0
- package/dist/src/cli.js.map +1 -1
- package/dist/src/lib/dataset-remote-verify.js +28 -7
- package/dist/src/lib/dataset-remote-verify.js.map +1 -1
- package/dist/src/lib/dataset-save-draft-run.js +14 -6
- package/dist/src/lib/dataset-save-draft-run.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,8 +17,8 @@ checkPaths:
|
|
|
17
17
|
- bin/**
|
|
18
18
|
- src/cli.ts
|
|
19
19
|
- src/main.ts
|
|
20
|
-
lastReviewedAt: 2026-06-
|
|
21
|
-
lastReviewedCommit:
|
|
20
|
+
lastReviewedAt: 2026-06-21
|
|
21
|
+
lastReviewedCommit: 44fa7e3d01a9cb144184b0047770f82f0006cace
|
|
22
22
|
---
|
|
23
23
|
|
|
24
24
|
# TianGong LCA CLI
|
package/dist/src/cli.js
CHANGED
|
@@ -2070,6 +2070,7 @@ function parseDatasetSaveDraftFlags(args) {
|
|
|
2070
2070
|
'out-dir': { type: 'string' },
|
|
2071
2071
|
commit: { type: 'boolean' },
|
|
2072
2072
|
'dry-run': { type: 'boolean' },
|
|
2073
|
+
'allow-account-local-support': { type: 'boolean' },
|
|
2073
2074
|
},
|
|
2074
2075
|
}));
|
|
2075
2076
|
}
|
|
@@ -2092,6 +2093,7 @@ function parseDatasetSaveDraftFlags(args) {
|
|
|
2092
2093
|
type: typeof values.type === 'string' ? values.type : undefined,
|
|
2093
2094
|
outDir: typeof values['out-dir'] === 'string' ? values['out-dir'] : null,
|
|
2094
2095
|
commit: Boolean(values.commit),
|
|
2096
|
+
allowReferenceOnlySupport: Boolean(values['allow-account-local-support']),
|
|
2095
2097
|
};
|
|
2096
2098
|
}
|
|
2097
2099
|
function parseDatasetContractFlags(args) {
|
|
@@ -4955,6 +4957,7 @@ export async function executeCli(argv, deps) {
|
|
|
4955
4957
|
type: datasetFlags.type,
|
|
4956
4958
|
outDir: datasetFlags.outDir,
|
|
4957
4959
|
commit: datasetFlags.commit,
|
|
4960
|
+
allowReferenceOnlySupport: datasetFlags.allowReferenceOnlySupport,
|
|
4958
4961
|
env: deps.env,
|
|
4959
4962
|
fetchImpl: deps.fetchImpl,
|
|
4960
4963
|
});
|