jiek 2.0.2-alpha.15 → 2.0.2-alpha.16
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 +4 -1
- package/cli.js +4 -1
- package/package.json +1 -1
- package/rollup/package.json +1 -1
- package/src/commands/publish.ts +4 -1
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.15";
|
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.15";
|
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,7 +4692,10 @@ async function prepublish() {
|
|
4692
4692
|
if (existsIndexFile) {
|
4693
4693
|
fs__default.default.writeFileSync(
|
4694
4694
|
resolveByDir(resolvedOutdir, file, "package.json"),
|
4695
|
-
JSON.stringify({
|
4695
|
+
JSON.stringify({
|
4696
|
+
name: `${oldJSON["name"]}/${file}`,
|
4697
|
+
type: oldJSON["type"]
|
4698
|
+
})
|
4696
4699
|
);
|
4697
4700
|
}
|
4698
4701
|
}
|
package/cli.js
CHANGED
@@ -4662,7 +4662,10 @@ async function prepublish() {
|
|
4662
4662
|
if (existsIndexFile) {
|
4663
4663
|
fs.writeFileSync(
|
4664
4664
|
resolveByDir(resolvedOutdir, file, "package.json"),
|
4665
|
-
JSON.stringify({
|
4665
|
+
JSON.stringify({
|
4666
|
+
name: `${oldJSON["name"]}/${file}`,
|
4667
|
+
type: oldJSON["type"]
|
4668
|
+
})
|
4666
4669
|
);
|
4667
4670
|
}
|
4668
4671
|
}
|
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.16",
|
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
|
-
{"type":"module"}
|
1
|
+
{"name":"jiek/rollup","type":"module"}
|
package/src/commands/publish.ts
CHANGED
@@ -316,7 +316,10 @@ async function prepublish() {
|
|
316
316
|
if (existsIndexFile) {
|
317
317
|
fs.writeFileSync(
|
318
318
|
resolveByDir(resolvedOutdir, file, 'package.json'),
|
319
|
-
JSON.stringify({
|
319
|
+
JSON.stringify({
|
320
|
+
name: `${oldJSON['name']}/${file}`,
|
321
|
+
type: oldJSON['type']
|
322
|
+
})
|
320
323
|
)
|
321
324
|
}
|
322
325
|
}
|