circuitscript 0.1.32 → 0.1.33
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/dist/cjs/main.js +0 -4
- package/dist/esm/main.js +0 -4
- package/package.json +1 -1
package/dist/cjs/main.js
CHANGED
|
@@ -19,7 +19,6 @@ async function main() {
|
|
|
19
19
|
.argument('[input path]', 'Input path')
|
|
20
20
|
.argument('[output path]', 'Output path')
|
|
21
21
|
.option('-i, --input text <input text>', 'Input text directly')
|
|
22
|
-
.option('-c, --current-directory <path>', 'Set current directory')
|
|
23
22
|
.option('-u, --update-source', 'Update source file with refdes annotation')
|
|
24
23
|
.option('-j, --annotated-path [file-path]', 'Save annotated source file at given path')
|
|
25
24
|
.option('-w, --watch', 'Watch for file changes')
|
|
@@ -44,9 +43,6 @@ async function main() {
|
|
|
44
43
|
const enableErc = options.erc;
|
|
45
44
|
const enableBom = options.bom !== undefined;
|
|
46
45
|
let bomOutputPath = options.bom;
|
|
47
|
-
if (options.currentDirectory) {
|
|
48
|
-
throw "Parameter not supported yet";
|
|
49
|
-
}
|
|
50
46
|
if (watchFileChanges) {
|
|
51
47
|
console.log('watching for file changes...');
|
|
52
48
|
}
|
package/dist/esm/main.js
CHANGED
|
@@ -14,7 +14,6 @@ export default async function main() {
|
|
|
14
14
|
.argument('[input path]', 'Input path')
|
|
15
15
|
.argument('[output path]', 'Output path')
|
|
16
16
|
.option('-i, --input text <input text>', 'Input text directly')
|
|
17
|
-
.option('-c, --current-directory <path>', 'Set current directory')
|
|
18
17
|
.option('-u, --update-source', 'Update source file with refdes annotation')
|
|
19
18
|
.option('-j, --annotated-path [file-path]', 'Save annotated source file at given path')
|
|
20
19
|
.option('-w, --watch', 'Watch for file changes')
|
|
@@ -39,9 +38,6 @@ export default async function main() {
|
|
|
39
38
|
const enableErc = options.erc;
|
|
40
39
|
const enableBom = options.bom !== undefined;
|
|
41
40
|
let bomOutputPath = options.bom;
|
|
42
|
-
if (options.currentDirectory) {
|
|
43
|
-
throw "Parameter not supported yet";
|
|
44
|
-
}
|
|
45
41
|
if (watchFileChanges) {
|
|
46
42
|
console.log('watching for file changes...');
|
|
47
43
|
}
|