@quilted/create 0.1.74 → 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 CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.1.74
4
10
 
5
11
  ### 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
  }
@@ -17,7 +17,10 @@ function createPackageManagerRunner(type, {
17
17
  },
18
18
  async install() {
19
19
  try {
20
- execSync(`corepack use ${type}@latest`);
20
+ execSync(`corepack use ${type}@latest`, {
21
+ cwd: root,
22
+ stdio: 'inherit'
23
+ });
21
24
  } catch {
22
25
  // intentional noop
23
26
  }
@@ -17,7 +17,10 @@ function createPackageManagerRunner(type, {
17
17
  },
18
18
  async install() {
19
19
  try {
20
- execSync(`corepack use ${type}@latest`);
20
+ execSync(`corepack use ${type}@latest`, {
21
+ cwd: root,
22
+ stdio: 'inherit'
23
+ });
21
24
  } catch {
22
25
  // intentional noop
23
26
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quilted/create",
3
3
  "type": "module",
4
- "version": "0.1.74",
4
+ "version": "0.1.75",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1 +1 @@
1
- 18.13.0
1
+ 18.17.0