@liangmi/vp-config 0.3.1 → 0.3.2
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.mjs +14 -20
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -303,27 +303,21 @@ const lintInput = [
|
|
|
303
303
|
"!**/node_modules/.vp-config/info.json",
|
|
304
304
|
"index.html"
|
|
305
305
|
];
|
|
306
|
-
const runBase = {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
input: lintInput
|
|
312
|
-
},
|
|
313
|
-
cfmt: "vp fmt",
|
|
314
|
-
cformat: "vp format",
|
|
315
|
-
clint: {
|
|
316
|
-
command: "vp lint",
|
|
317
|
-
input: lintInput
|
|
318
|
-
},
|
|
319
|
-
cpack: "vp pack",
|
|
320
|
-
ctest: "vp test"
|
|
306
|
+
const runBase = { tasks: {
|
|
307
|
+
cbuild: "vp build",
|
|
308
|
+
ccheck: {
|
|
309
|
+
command: "vp check",
|
|
310
|
+
input: lintInput
|
|
321
311
|
},
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
312
|
+
cfmt: "vp fmt",
|
|
313
|
+
cformat: "vp format",
|
|
314
|
+
clint: {
|
|
315
|
+
command: "vp lint",
|
|
316
|
+
input: lintInput
|
|
317
|
+
},
|
|
318
|
+
cpack: "vp pack",
|
|
319
|
+
ctest: "vp test"
|
|
320
|
+
} };
|
|
327
321
|
//#endregion
|
|
328
322
|
//#region src/base/staged.ts
|
|
329
323
|
const stagedBase = { "*": "vp check --fix" };
|