@plasmicapp/cli 0.1.349 → 0.1.350
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/index.js +2328 -456
- package/dist/lib.js +2328 -456
- package/package.json +2 -2
- package/tsconfig.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.350",
|
|
4
4
|
"description": "plasmic cli for syncing local code with Plasmic designs",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=12"
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"wrap-ansi": "^7.0.0",
|
|
83
83
|
"yargs": "^15.4.1"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "1e8a75eb4e5dcf4aa0c74b830234d5a0c3e2eabf"
|
|
86
86
|
}
|
package/tsconfig.json
CHANGED
|
@@ -63,7 +63,14 @@
|
|
|
63
63
|
"skipLibCheck": true,
|
|
64
64
|
|
|
65
65
|
/* Advanced Options */
|
|
66
|
-
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file.
|
|
66
|
+
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
|
|
67
|
+
|
|
68
|
+
"paths": {
|
|
69
|
+
// This package depends on inquirer@7, but we just installed inquirer@12 as a transitive dep.
|
|
70
|
+
// inquirere@12 which ships with .d.ts files, which tsc automatically finds and uses.
|
|
71
|
+
// This tells tsc to use @types/inquirer instead.
|
|
72
|
+
"inquirer": ["../../node_modules/@types/inquirer"]
|
|
73
|
+
}
|
|
67
74
|
},
|
|
68
75
|
"include": ["src"]
|
|
69
76
|
}
|