jiek 2.2.5-alpha.1 → 2.2.6
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/cli-only-build.cjs +1 -1
- package/dist/cli-only-build.js +1 -1
- package/dist/cli.cjs +3 -2
- package/dist/cli.js +3 -2
- package/package.json +1 -1
- package/src/commands/publish.ts +3 -2
package/dist/cli-only-build.cjs
CHANGED
@@ -118,7 +118,7 @@ async function getSelectedProjectsGraph(filter = commander.program.getOptionValu
|
|
118
118
|
|
119
119
|
var name = "jiek";
|
120
120
|
var type = "module";
|
121
|
-
var version = "2.2.5";
|
121
|
+
var version = "2.2.5-alpha.1";
|
122
122
|
var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
|
123
123
|
var author = "YiJie <yijie4188@gmail.com>";
|
124
124
|
var homepage = "https://github.com/NWYLZW/jiek/tree/master/packages/jiek#readme";
|
package/dist/cli-only-build.js
CHANGED
@@ -110,7 +110,7 @@ async function getSelectedProjectsGraph(filter = program.getOptionValue("filter"
|
|
110
110
|
|
111
111
|
var name = "jiek";
|
112
112
|
var type = "module";
|
113
|
-
var version = "2.2.5";
|
113
|
+
var version = "2.2.5-alpha.1";
|
114
114
|
var description$1 = "A lightweight toolkit for compiling and managing libraries based on `package.json` metadata and suitable for `Monorepo`.";
|
115
115
|
var author = "YiJie <yijie4188@gmail.com>";
|
116
116
|
var homepage = "https://github.com/NWYLZW/jiek/tree/master/packages/jiek#readme";
|
package/dist/cli.cjs
CHANGED
@@ -4801,8 +4801,9 @@ async function postpublish() {
|
|
4801
4801
|
fs__default.default.copyFileSync(jiekTempPackageJSONPath, packageJSONPath);
|
4802
4802
|
fs__default.default.rmSync(jiekTempPackageJSONPath);
|
4803
4803
|
console.log(`${dir}/package.json has been restored`);
|
4804
|
-
console.log(
|
4805
|
-
|
4804
|
+
console.log(
|
4805
|
+
`if you want to check the compatibility of the package, you can visit: https://arethetypeswrong.github.io/?p=${name}%40${version}`
|
4806
|
+
);
|
4806
4807
|
} else {
|
4807
4808
|
throw new Error(
|
4808
4809
|
`jiek temp \`${dir}/package.json\` not found, please confirm the jiek pre-publish command has been executed`
|
package/dist/cli.js
CHANGED
@@ -4772,8 +4772,9 @@ async function postpublish() {
|
|
4772
4772
|
fs.copyFileSync(jiekTempPackageJSONPath, packageJSONPath);
|
4773
4773
|
fs.rmSync(jiekTempPackageJSONPath);
|
4774
4774
|
console.log(`${dir}/package.json has been restored`);
|
4775
|
-
console.log(
|
4776
|
-
|
4775
|
+
console.log(
|
4776
|
+
`if you want to check the compatibility of the package, you can visit: https://arethetypeswrong.github.io/?p=${name}%40${version}`
|
4777
|
+
);
|
4777
4778
|
} else {
|
4778
4779
|
throw new Error(
|
4779
4780
|
`jiek temp \`${dir}/package.json\` not found, please confirm the jiek pre-publish command has been executed`
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "jiek",
|
3
3
|
"type": "module",
|
4
|
-
"version": "2.2.
|
4
|
+
"version": "2.2.6",
|
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
|
"homepage": "https://github.com/NWYLZW/jiek/tree/master/packages/jiek#readme",
|
package/src/commands/publish.ts
CHANGED
@@ -451,8 +451,9 @@ async function postpublish() {
|
|
451
451
|
fs.rmSync(jiekTempPackageJSONPath)
|
452
452
|
/* eslint-disable no-console */
|
453
453
|
console.log(`${dir}/package.json has been restored`)
|
454
|
-
console.log(
|
455
|
-
|
454
|
+
console.log(
|
455
|
+
`if you want to check the compatibility of the package, you can visit: https://arethetypeswrong.github.io/?p=${name}%40${version}`
|
456
|
+
)
|
456
457
|
/* eslint-enable no-console */
|
457
458
|
} else {
|
458
459
|
throw new Error(
|