@omnia/tooling 8.0.100-vnext → 8.0.101-vnext
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.
@@ -10,6 +10,7 @@ const core = tslib_1.__importStar(require("./core"));
|
|
10
10
|
exports.core = core;
|
11
11
|
const utils = tslib_1.__importStar(require("./utils"));
|
12
12
|
exports.utils = utils;
|
13
|
+
const del_1 = tslib_1.__importDefault(require("del"));
|
13
14
|
tslib_1.__exportStar(require("./core"), exports);
|
14
15
|
tslib_1.__exportStar(require("./utils"), exports);
|
15
16
|
const TYPESCRIPT_VERSION = '5.0.4';
|
@@ -158,6 +159,9 @@ async function run() {
|
|
158
159
|
if (process.argv.length > 0 && process.argv.find(argv => argv === "--clean") !== undefined) {
|
159
160
|
await clean(false);
|
160
161
|
}
|
162
|
+
else if (process.argv.length > 0 && process.argv.find(argv => argv === "--package") !== undefined) {
|
163
|
+
del_1.default.sync("wwwroot/packages/temp");
|
164
|
+
}
|
161
165
|
build();
|
162
166
|
}
|
163
167
|
else if (command === "serve" || argv.serve) {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/tooling",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.101-vnext",
|
5
5
|
"description": "Provide basic stuffs extensible for omnia extension.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
@@ -26,7 +26,7 @@
|
|
26
26
|
},
|
27
27
|
"main": "index.js",
|
28
28
|
"dependencies": {
|
29
|
-
"@omnia/types": "8.0.
|
29
|
+
"@omnia/types": "8.0.101-vnext",
|
30
30
|
"@types/node": "18.13.0",
|
31
31
|
"tslib": "2.5.0",
|
32
32
|
"typescript": "5.0.4",
|