@quilted/create 0.1.73 → 0.1.75
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/CHANGELOG.md +12 -0
- package/build/cjs/packages/cli-kit/source/package-manager.cjs +4 -1
- package/build/esm/packages/cli-kit/source/package-manager.mjs +4 -1
- package/build/esnext/packages/cli-kit/source/package-manager.esnext +4 -1
- package/package.json +2 -2
- package/templates/workspace/_nvmrc +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.1.75
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`66c414cd`](https://github.com/lemonmade/quilt/commit/66c414cd01c708ab5fd1da56678c34877452d158) Thanks [@lemonmade](https://github.com/lemonmade)! - Update create template node version
|
|
8
|
+
|
|
9
|
+
## 0.1.74
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`ad56e94b`](https://github.com/lemonmade/quilt/commit/ad56e94b0ce634c89674117f5a4c26075ac080b7) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix create => cli-kit version dependency again
|
|
14
|
+
|
|
3
15
|
## 0.1.73
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -19,7 +19,10 @@ function createPackageManagerRunner(type, {
|
|
|
19
19
|
},
|
|
20
20
|
async install() {
|
|
21
21
|
try {
|
|
22
|
-
node_child_process.execSync(`corepack use ${type}@latest
|
|
22
|
+
node_child_process.execSync(`corepack use ${type}@latest`, {
|
|
23
|
+
cwd: root,
|
|
24
|
+
stdio: 'inherit'
|
|
25
|
+
});
|
|
23
26
|
} catch {
|
|
24
27
|
// intentional noop
|
|
25
28
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quilted/create",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.75",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"types": "./build/typescript/index.d.ts",
|
|
26
26
|
"sideEffects": true,
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@quilted/cli-kit": "^0.1.
|
|
28
|
+
"@quilted/cli-kit": "^0.1.11",
|
|
29
29
|
"@types/common-tags": "^1.8.0",
|
|
30
30
|
"@types/fs-extra": "^9.0.11",
|
|
31
31
|
"@types/minimatch": "^3.0.5",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
18.
|
|
1
|
+
18.17.0
|