@quilted/create 0.1.22 → 0.1.23
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.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#373](https://github.com/lemonmade/quilt/pull/373) [`a626d243`](https://github.com/lemonmade/quilt/commit/a626d24384548fc674ec180d221b00bb633c9358) Thanks [@lemonmade](https://github.com/lemonmade)! - Add quilt run command
|
|
8
|
+
|
|
3
9
|
## 0.1.22
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -13,5 +13,10 @@
|
|
|
13
13
|
"[typescriptreact]": {
|
|
14
14
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
15
15
|
},
|
|
16
|
-
"typescript.tsdk": "node_modules/typescript/lib"
|
|
16
|
+
"typescript.tsdk": "node_modules/typescript/lib",
|
|
17
|
+
// Quilt includes Jest as a dependency, so not all package managers will put the Jest binary
|
|
18
|
+
// in the root `node_modules` directory. This override will always work, regardless of where
|
|
19
|
+
// the Jest binary gets installed.
|
|
20
|
+
// @see https://github.com/jest-community/vscode-jest#jestcommandline
|
|
21
|
+
"jest.jestCommandLine": "./node_modules/.bin/quilt run jest"
|
|
17
22
|
}
|