jiek 2.0.2-alpha.16 → 2.0.2-alpha.17
Sign up to get free protection for your applications and to get access to all the features.
- package/cli-only-build.cjs +1 -1
- package/cli-only-build.js +1 -1
- package/cli.cjs +1 -4
- package/cli.js +1 -4
- package/package.json +1 -1
- package/rollup/package.json +1 -1
- package/src/commands/publish.ts +1 -4
package/cli-only-build.cjs
CHANGED
@@ -116,7 +116,7 @@ async function getSelectedProjectsGraph(filter = commander.program.getOptionValu
|
|
116
116
|
|
117
117
|
var name = "jiek";
|
118
118
|
var type = "module";
|
119
|
-
var version = "2.0.2-alpha.
|
119
|
+
var version = "2.0.2-alpha.16";
|
120
120
|
var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
|
121
121
|
var author = "YiJie <yijie4188@gmail.com>";
|
122
122
|
var repository = {
|
package/cli-only-build.js
CHANGED
@@ -108,7 +108,7 @@ async function getSelectedProjectsGraph(filter = program.getOptionValue("filter"
|
|
108
108
|
|
109
109
|
var name = "jiek";
|
110
110
|
var type = "module";
|
111
|
-
var version = "2.0.2-alpha.
|
111
|
+
var version = "2.0.2-alpha.16";
|
112
112
|
var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
|
113
113
|
var author = "YiJie <yijie4188@gmail.com>";
|
114
114
|
var repository = {
|
package/cli.cjs
CHANGED
@@ -4692,10 +4692,7 @@ async function prepublish() {
|
|
4692
4692
|
if (existsIndexFile) {
|
4693
4693
|
fs__default.default.writeFileSync(
|
4694
4694
|
resolveByDir(resolvedOutdir, file, "package.json"),
|
4695
|
-
JSON.stringify({
|
4696
|
-
name: `${oldJSON["name"]}/${file}`,
|
4697
|
-
type: oldJSON["type"]
|
4698
|
-
})
|
4695
|
+
JSON.stringify({ type: oldJSON["type"] })
|
4699
4696
|
);
|
4700
4697
|
}
|
4701
4698
|
}
|
package/cli.js
CHANGED
@@ -4662,10 +4662,7 @@ async function prepublish() {
|
|
4662
4662
|
if (existsIndexFile) {
|
4663
4663
|
fs.writeFileSync(
|
4664
4664
|
resolveByDir(resolvedOutdir, file, "package.json"),
|
4665
|
-
JSON.stringify({
|
4666
|
-
name: `${oldJSON["name"]}/${file}`,
|
4667
|
-
type: oldJSON["type"]
|
4668
|
-
})
|
4665
|
+
JSON.stringify({ type: oldJSON["type"] })
|
4669
4666
|
);
|
4670
4667
|
}
|
4671
4668
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "jiek",
|
3
3
|
"type": "module",
|
4
|
-
"version": "2.0.2-alpha.
|
4
|
+
"version": "2.0.2-alpha.17",
|
5
5
|
"description": "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.",
|
6
6
|
"author": "YiJie <yijie4188@gmail.com>",
|
7
7
|
"repository": {
|
package/rollup/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"
|
1
|
+
{"type":"module"}
|
package/src/commands/publish.ts
CHANGED
@@ -316,10 +316,7 @@ async function prepublish() {
|
|
316
316
|
if (existsIndexFile) {
|
317
317
|
fs.writeFileSync(
|
318
318
|
resolveByDir(resolvedOutdir, file, 'package.json'),
|
319
|
-
JSON.stringify({
|
320
|
-
name: `${oldJSON['name']}/${file}`,
|
321
|
-
type: oldJSON['type']
|
322
|
-
})
|
319
|
+
JSON.stringify({ type: oldJSON['type'] })
|
323
320
|
)
|
324
321
|
}
|
325
322
|
}
|