@shopify/create-app 3.25.0 → 3.26.0

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.
@@ -0,0 +1 @@
1
+ {"version":"3.26.0","commands":{"init":{"id":"init","strict":true,"pluginName":"@shopify/create-app","pluginAlias":"@shopify/create-app","pluginType":"core","aliases":["create-app"],"flags":{"preset":{"name":"preset","type":"option","description":"The preset to apply to the current command.","hidden":true,"multiple":false},"verbose":{"name":"verbose","type":"boolean","description":"Increase the verbosity of the logs.","hidden":false,"allowNo":false},"name":{"name":"name","type":"option","char":"n","hidden":false,"multiple":false},"path":{"name":"path","type":"option","char":"p","hidden":false,"multiple":false},"template":{"name":"template","type":"option","description":"The app template. Accepts one of the following:\n - <node|php|ruby>\n - Any GitHub repo with optional branch and subpath eg: https://github.com/Shopify/<repository>/[subpath]#[branch]","multiple":false},"package-manager":{"name":"package-manager","type":"option","char":"d","hidden":false,"multiple":false,"options":["npm","yarn","pnpm"]},"local":{"name":"local","type":"boolean","char":"l","hidden":true,"allowNo":false}},"args":[],"_globalFlags":{}}}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopify/create-app",
3
- "version": "3.25.0",
3
+ "version": "3.26.0",
4
4
  "private": false,
5
5
  "description": "A CLI tool to create a new Shopify app.",
6
6
  "type": "module",
@@ -30,16 +30,6 @@
30
30
  "access": "public",
31
31
  "@shopify:registry": "https://registry.npmjs.org"
32
32
  },
33
- "scripts": {
34
- "prepack": "cross-env NODE_ENV=production yarn nx build && cp ../../README.md README.md",
35
- "build": "nx build",
36
- "clean": "nx clean",
37
- "lint": "nx lint",
38
- "lint:fix": "nx lint:fix",
39
- "test": "nx run create-app:test",
40
- "test:watch": "nx test:watch",
41
- "type-check": "nx type-check"
42
- },
43
33
  "eslintConfig": {
44
34
  "extends": [
45
35
  "../../.eslintrc.cjs"
@@ -47,10 +37,11 @@
47
37
  },
48
38
  "dependencies": {
49
39
  "@oclif/core": "1.9.2",
50
- "@shopify/cli-kit": "3.25.0"
40
+ "@shopify/cli-kit": "3.26.0"
51
41
  },
52
42
  "devDependencies": {
53
- "vitest": "^0.22.1"
43
+ "vitest": "^0.23.4",
44
+ "vite": "^2.9.13"
54
45
  },
55
46
  "engine-strict": true,
56
47
  "engines": {
@@ -78,5 +69,14 @@
78
69
  },
79
70
  "bugs": {
80
71
  "url": "https://github.com/Shopify/cli/issues/new/choose"
72
+ },
73
+ "scripts": {
74
+ "build": "nx build",
75
+ "clean": "nx clean",
76
+ "lint": "nx lint",
77
+ "lint:fix": "nx lint:fix",
78
+ "test": "nx run create-app:test",
79
+ "test:watch": "nx test:watch",
80
+ "type-check": "nx type-check"
81
81
  }
82
- }
82
+ }