create-unisphere-project 2.2.3 → 2.3.1
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/CHANGELOG.md
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-unisphere-project",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"private": false,
|
|
5
|
-
"main": "./src/index.js",
|
|
6
|
-
"types": "./src/index.d.ts",
|
|
5
|
+
"main": "./dist/src/index.js",
|
|
6
|
+
"types": "./dist/src/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"create-unisphere-project": "./src/index.js"
|
|
8
|
+
"create-unisphere-project": "./dist/src/index.js"
|
|
9
9
|
},
|
|
10
10
|
"preferGlobal": true,
|
|
11
11
|
"publishConfig": {
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"./package.json": "./package.json",
|
|
36
36
|
".": {
|
|
37
37
|
"@unisphere/nx-plugin": "./src/index.ts",
|
|
38
|
-
"types": "./src/index.d.ts",
|
|
39
|
-
"import": "./src/index.js",
|
|
40
|
-
"default": "./src/index.js"
|
|
38
|
+
"types": "./dist/src/index.d.ts",
|
|
39
|
+
"import": "./dist/src/index.js",
|
|
40
|
+
"default": "./dist/src/index.js"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
package/dist/src/index.js
CHANGED
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-unisphere-repo-command.d.ts","sourceRoot":"","sources":["../../../src/lib/create-unisphere-repo-command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAU,MAAM,WAAW,CAAC;AAsC5C,eAAO,MAAM,gCAAgC,GAC3C,eAAe,OAAO,KACrB,
|
|
1
|
+
{"version":3,"file":"create-unisphere-repo-command.d.ts","sourceRoot":"","sources":["../../../src/lib/create-unisphere-repo-command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAU,MAAM,WAAW,CAAC;AAsC5C,eAAO,MAAM,gCAAgC,GAC3C,eAAe,OAAO,KACrB,OAqUF,CAAC"}
|
|
@@ -197,9 +197,10 @@ legacy-peer-deps=true`);
|
|
|
197
197
|
...packageJson.devDependencies,
|
|
198
198
|
...packageJson.peerDependencies,
|
|
199
199
|
};
|
|
200
|
-
const unispherePackages = Object.keys(allDependencies).filter((pkg) => pkg.startsWith('@unisphere') && pkg !== '@unisphere/nx');
|
|
200
|
+
const unispherePackages = Object.keys(allDependencies).filter((pkg) => pkg.startsWith('@unisphere') && pkg !== '@unisphere/nx' && pkg !== '@unisphere/cli');
|
|
201
201
|
debug(`Found @unisphere packages: ${unispherePackages.join(', ')}`);
|
|
202
202
|
const unispherePackagesToInstall = unispherePackages.map((pkg) => `${pkg}@latest`);
|
|
203
|
+
unispherePackagesToInstall.push('@unisphere/cli@1');
|
|
203
204
|
debug(`Running: ${unispherePackagesToInstall}`);
|
|
204
205
|
(0, child_process_1.execSync)(`npm install ${unispherePackagesToInstall.join(' ')} --force`, {
|
|
205
206
|
cwd: newProjectPath,
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-unisphere-project",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"private": false,
|
|
5
|
-
"main": "./src/index.js",
|
|
6
|
-
"types": "./src/index.d.ts",
|
|
5
|
+
"main": "./dist/src/index.js",
|
|
6
|
+
"types": "./dist/src/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"create-unisphere-project": "./src/index.js"
|
|
8
|
+
"create-unisphere-project": "./dist/src/index.js"
|
|
9
9
|
},
|
|
10
10
|
"preferGlobal": true,
|
|
11
11
|
"publishConfig": {
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"./package.json": "./package.json",
|
|
36
36
|
".": {
|
|
37
37
|
"@unisphere/nx-plugin": "./src/index.ts",
|
|
38
|
-
"types": "./src/index.d.ts",
|
|
39
|
-
"import": "./src/index.js",
|
|
40
|
-
"default": "./src/index.js"
|
|
38
|
+
"types": "./dist/src/index.d.ts",
|
|
39
|
+
"import": "./dist/src/index.js",
|
|
40
|
+
"default": "./dist/src/index.js"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|