@shopify/create-hydrogen 3.5.0 → 3.6.2
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 +23 -0
- package/dist/commands/init.d.ts +1 -0
- package/dist/commands/init.js +11 -3
- package/dist/commands/init.js.map +1 -1
- package/dist/prompts/init.d.ts +1 -0
- package/dist/prompts/init.js +107 -51
- package/dist/prompts/init.js.map +1 -1
- package/dist/services/init.js +0 -8
- package/dist/services/init.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/create-hydrogen",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to create a new Shopify hydrogen app.",
|
|
6
6
|
"type": "module",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"clean": "shx rm -rf dist",
|
|
36
36
|
"build": "rimraf dist/ && tsc -b ./tsconfig.build.json",
|
|
37
37
|
"prepack": "cross-env NODE_ENV=production yarn run build",
|
|
38
|
-
"lint": "
|
|
39
|
-
"lint:fix": "
|
|
38
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
39
|
+
"lint:fix": "eslint 'src/**/*.ts' --fix",
|
|
40
40
|
"test": "vitest run",
|
|
41
41
|
"test:watch": "vitest watch",
|
|
42
42
|
"tsc": "tsc --noEmit"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@oclif/core": "^1.0",
|
|
54
|
-
"@shopify/cli-kit": "3.
|
|
54
|
+
"@shopify/cli-kit": "3.6.2",
|
|
55
55
|
"@types/download": "^8.0.1",
|
|
56
56
|
"download": "^8.0.0"
|
|
57
57
|
},
|