@modern-js/repo-generator 0.0.0-next-8a882ed80 → 0.0.0-next-1104a9f18
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 +6 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -150222,7 +150222,8 @@ var require_analyzeProject2 = __commonJS({
|
|
|
150222
150222
|
};
|
|
150223
150223
|
var analyzeProject_exports = {};
|
|
150224
150224
|
__export2(analyzeProject_exports, {
|
|
150225
|
-
isApiOnly: () => isApiOnly
|
|
150225
|
+
isApiOnly: () => isApiOnly,
|
|
150226
|
+
isWebOnly: () => isWebOnly
|
|
150226
150227
|
});
|
|
150227
150228
|
module2.exports = __toCommonJS2(analyzeProject_exports);
|
|
150228
150229
|
var path9 = __toESM2(require("path"));
|
|
@@ -150233,6 +150234,10 @@ var require_analyzeProject2 = __commonJS({
|
|
|
150233
150234
|
const options = (0, import_compiled.minimist)(process.argv.slice(2));
|
|
150234
150235
|
return !existSrc || Boolean(options["api-only"]);
|
|
150235
150236
|
});
|
|
150237
|
+
var isWebOnly = () => __async2(void 0, null, function* () {
|
|
150238
|
+
const options = (0, import_compiled.minimist)(process.argv.slice(2));
|
|
150239
|
+
return Boolean(options["web-only"]);
|
|
150240
|
+
});
|
|
150236
150241
|
}
|
|
150237
150242
|
});
|
|
150238
150243
|
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "0.0.0-next-
|
|
14
|
+
"version": "0.0.0-next-1104a9f18",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"files": [
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"@types/node": "^14",
|
|
27
27
|
"jest": "^27",
|
|
28
28
|
"typescript": "^4",
|
|
29
|
-
"@modern-js/base-generator": "0.0.0-next-
|
|
30
|
-
"@modern-js/generator-common": "0.0.0-next-
|
|
31
|
-
"@modern-js/generator-
|
|
32
|
-
"@modern-js/generator-
|
|
33
|
-
"@modern-js/module-generator": "0.0.0-next-
|
|
34
|
-
"@modern-js/monorepo-generator": "0.0.0-next-
|
|
35
|
-
"@modern-js/mwa-generator": "0.0.0-next-
|
|
36
|
-
"@modern-js/utils": "0.0.0-next-
|
|
37
|
-
"@scripts/build": "0.0.0-next-
|
|
38
|
-
"@scripts/jest-config": "0.0.0-next-
|
|
29
|
+
"@modern-js/base-generator": "0.0.0-next-1104a9f18",
|
|
30
|
+
"@modern-js/generator-common": "0.0.0-next-1104a9f18",
|
|
31
|
+
"@modern-js/generator-plugin": "0.0.0-next-1104a9f18",
|
|
32
|
+
"@modern-js/generator-utils": "0.0.0-next-1104a9f18",
|
|
33
|
+
"@modern-js/module-generator": "0.0.0-next-1104a9f18",
|
|
34
|
+
"@modern-js/monorepo-generator": "0.0.0-next-1104a9f18",
|
|
35
|
+
"@modern-js/mwa-generator": "0.0.0-next-1104a9f18",
|
|
36
|
+
"@modern-js/utils": "0.0.0-next-1104a9f18",
|
|
37
|
+
"@scripts/build": "0.0.0-next-1104a9f18",
|
|
38
|
+
"@scripts/jest-config": "0.0.0-next-1104a9f18"
|
|
39
39
|
},
|
|
40
40
|
"sideEffects": false,
|
|
41
41
|
"publishConfig": {
|