@deot/dev-linker 2.8.0 → 2.9.0
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.cjs +1 -2
- package/dist/index.js +1 -2
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -16,8 +16,7 @@ const run = (options) => devShared.Utils.autoCatch(async () => {
|
|
|
16
16
|
options.dryRun = process.env.NODE_ENV === "UNIT";
|
|
17
17
|
}
|
|
18
18
|
const command = `npx pnpm link ./${workspace}/`;
|
|
19
|
-
if (options.dryRun)
|
|
20
|
-
return devShared.Shell.spawn(`echo ${command}`);
|
|
19
|
+
if (options.dryRun) return devShared.Shell.spawn(`echo ${command}`);
|
|
21
20
|
const spinner = ora(`Links ...
|
|
22
21
|
`);
|
|
23
22
|
spinner.start();
|
package/dist/index.js
CHANGED
|
@@ -12,8 +12,7 @@ const run = (options) => Utils.autoCatch(async () => {
|
|
|
12
12
|
options.dryRun = process.env.NODE_ENV === "UNIT";
|
|
13
13
|
}
|
|
14
14
|
const command = `npx pnpm link ./${workspace}/`;
|
|
15
|
-
if (options.dryRun)
|
|
16
|
-
return Shell.spawn(`echo ${command}`);
|
|
15
|
+
if (options.dryRun) return Shell.spawn(`echo ${command}`);
|
|
17
16
|
const spinner = ora(`Links ...
|
|
18
17
|
`);
|
|
19
18
|
spinner.start();
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deot/dev-linker",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"import": "./dist/index.js",
|
|
10
|
-
"require": "./dist/index.cjs"
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@deot/dev-shared": "^2.
|
|
23
|
-
"chalk": "^5.
|
|
24
|
-
"ora": "^
|
|
22
|
+
"@deot/dev-shared": "^2.9.0",
|
|
23
|
+
"chalk": "^5.4.1",
|
|
24
|
+
"ora": "^8.2.0"
|
|
25
25
|
}
|
|
26
26
|
}
|