jiek 2.1.3 → 2.1.4
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 +1 -0
- package/dist/cli.js +1 -0
- package/dist/rollup/index.cjs +1 -0
- package/dist/rollup/index.js +1 -0
- package/package.json +6 -6
- package/src/utils/getExports.ts +1 -0
package/dist/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.1.
|
|
119
|
+
var version = "2.1.3";
|
|
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/dist/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.1.
|
|
111
|
+
var version = "2.1.3";
|
|
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/dist/cli.cjs
CHANGED
|
@@ -4324,6 +4324,7 @@ function getExports({
|
|
|
4324
4324
|
filteredResolvedEntrypoints,
|
|
4325
4325
|
entrypoints.entrypoints2Exports(filteredResolvedEntrypoints, {
|
|
4326
4326
|
outdir,
|
|
4327
|
+
sourceTag: pkgName,
|
|
4327
4328
|
withSuffix: isPublish ? withSuffix : void 0,
|
|
4328
4329
|
withSource: isPublish ? withSource : void 0,
|
|
4329
4330
|
withConditional: {
|
package/dist/cli.js
CHANGED
|
@@ -4294,6 +4294,7 @@ function getExports({
|
|
|
4294
4294
|
filteredResolvedEntrypoints,
|
|
4295
4295
|
entrypoints2Exports(filteredResolvedEntrypoints, {
|
|
4296
4296
|
outdir,
|
|
4297
|
+
sourceTag: pkgName,
|
|
4297
4298
|
withSuffix: isPublish ? withSuffix : void 0,
|
|
4298
4299
|
withSource: isPublish ? withSource : void 0,
|
|
4299
4300
|
withConditional: {
|
package/dist/rollup/index.cjs
CHANGED
|
@@ -4225,6 +4225,7 @@ function getExports({
|
|
|
4225
4225
|
filteredResolvedEntrypoints,
|
|
4226
4226
|
entrypoints.entrypoints2Exports(filteredResolvedEntrypoints, {
|
|
4227
4227
|
outdir,
|
|
4228
|
+
sourceTag: pkgName,
|
|
4228
4229
|
withSuffix: isPublish ? withSuffix : void 0,
|
|
4229
4230
|
withSource: isPublish ? withSource : void 0,
|
|
4230
4231
|
withConditional: {
|
package/dist/rollup/index.js
CHANGED
|
@@ -4212,6 +4212,7 @@ function getExports({
|
|
|
4212
4212
|
filteredResolvedEntrypoints,
|
|
4213
4213
|
entrypoints2Exports(filteredResolvedEntrypoints, {
|
|
4214
4214
|
outdir,
|
|
4215
|
+
sourceTag: pkgName,
|
|
4215
4216
|
withSuffix: isPublish ? withSuffix : void 0,
|
|
4216
4217
|
withSource: isPublish ? withSource : void 0,
|
|
4217
4218
|
withConditional: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jiek",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.4",
|
|
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": {
|
|
@@ -19,22 +19,22 @@
|
|
|
19
19
|
"exports": {
|
|
20
20
|
"./package.json": "./package.json",
|
|
21
21
|
".": {
|
|
22
|
-
"
|
|
22
|
+
"jiek/__source__": "./src/index.ts",
|
|
23
23
|
"require": "./dist/index.cjs",
|
|
24
24
|
"default": "./dist/index.js"
|
|
25
25
|
},
|
|
26
26
|
"./cli": {
|
|
27
|
-
"
|
|
27
|
+
"jiek/__source__": "./src/cli.ts",
|
|
28
28
|
"require": "./dist/cli.cjs",
|
|
29
29
|
"default": "./dist/cli.js"
|
|
30
30
|
},
|
|
31
31
|
"./cli-only-build": {
|
|
32
|
-
"
|
|
32
|
+
"jiek/__source__": "./src/cli-only-build.ts",
|
|
33
33
|
"require": "./dist/cli-only-build.cjs",
|
|
34
34
|
"default": "./dist/cli-only-build.js"
|
|
35
35
|
},
|
|
36
36
|
"./rollup": {
|
|
37
|
-
"
|
|
37
|
+
"jiek/__source__": "./src/rollup/index.ts",
|
|
38
38
|
"require": "./dist/rollup/index.cjs",
|
|
39
39
|
"default": "./dist/rollup/index.js"
|
|
40
40
|
}
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"js-yaml": "^4.1.0",
|
|
56
56
|
"jsonc-parser": "^3.2.1",
|
|
57
57
|
"rollup": "4.13.2",
|
|
58
|
-
"@jiek/pkger": "^0.2.
|
|
58
|
+
"@jiek/pkger": "^0.2.1",
|
|
59
59
|
"@jiek/utils": "^0.2.3"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
package/src/utils/getExports.ts
CHANGED
|
@@ -129,6 +129,7 @@ export function getExports({
|
|
|
129
129
|
filteredResolvedEntrypoints,
|
|
130
130
|
entrypoints2Exports(filteredResolvedEntrypoints, {
|
|
131
131
|
outdir,
|
|
132
|
+
sourceTag: pkgName,
|
|
132
133
|
withSuffix: isPublish ? withSuffix : undefined,
|
|
133
134
|
withSource: isPublish ? withSource : undefined,
|
|
134
135
|
withConditional: {
|