@shopify/create-app 0.31.3 → 0.33.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopify/create-app",
3
- "version": "0.31.3",
3
+ "version": "0.33.2",
4
4
  "private": false,
5
5
  "description": "A CLI tool to create a new Shopify app.",
6
6
  "type": "module",
@@ -33,24 +33,28 @@
33
33
  },
34
34
  "scripts": {
35
35
  "clean": "shx rm -rf dist",
36
- "build": "rollup -c",
36
+ "build": "rimraf dist/ && rollup -c",
37
37
  "prepack": "cross-env NODE_ENV=production yarn run build",
38
- "lint": "prettier -c src/** && eslint src/**/*.ts",
39
- "lint:fix": "prettier -w src/** && eslint src/**/*.ts --fix",
38
+ "lint": "prettier -c src/** && eslint 'src/**/*.ts'",
39
+ "lint:fix": "prettier -w src/** && eslint 'src/**/*.ts' --fix",
40
40
  "test": "vitest run",
41
41
  "test:watch": "vitest watch",
42
42
  "tsc": "tsc --noEmit"
43
43
  },
44
44
  "eslintConfig": {
45
45
  "extends": [
46
- "../../package.json"
46
+ "../../.eslintrc.cjs"
47
47
  ]
48
48
  },
49
49
  "dependencies": {
50
- "@bugsnag/js": "^7.14.1",
50
+ "@bugsnag/js": "^7.16.2",
51
51
  "@oclif/core": "1.3.6",
52
52
  "open": "^8.4.0"
53
53
  },
54
+ "devDependencies": {
55
+ "vitest": "0.7.9",
56
+ "@shopify/cli-kit": "0.33.2"
57
+ },
54
58
  "engine-strict": true,
55
59
  "engines": {
56
60
  "node": "^14.13.1 || ^16.0.0 || ^17.0.0"
@@ -3,5 +3,5 @@
3
3
  ## Set up
4
4
 
5
5
  1. Clone the repository.
6
- 2. Install dependencies: `{{dependencyManager}} install`.
7
- 3. Build with `{{dependencyManager}} build`
6
+ 2. Install dependencies: `{{dependency_manager}} install`.
7
+ 3. Build with `{{dependency_manager}} build`
@@ -15,14 +15,14 @@
15
15
  "@shopify/cli": "{{shopify_cli_version}}",
16
16
  "@shopify/app": "{{shopify_app_version}}",
17
17
  "react": "17.0.2"
18
- },
19
- {% if cli_kit_version_overriden_version %}
18
+ },{% if dependency_overrides.size > 0 %}{% if dependency_overrides %}
20
19
  "overrides": {
21
- "@shopify/cli-kit": "{{cli_kit_version_overriden_version}}"
22
- },
20
+ {% for dependency in dependency_overrides %}
21
+ "{{dependency[0]}}": "{{dependency[1]}}"{% unless forloop.last %},{% endunless %}{% endfor %}
22
+ },{% endif %}{% endif %}{% if dependency_overrides.size > 0 %}{% if dependency_overrides %}
23
23
  "resolutions": {
24
- "@shopify/cli-kit": "{{cli_kit_version_overriden_version}}"
25
- },
26
- {% endif %}
24
+ {% for dependency in dependency_overrides %}
25
+ "{{dependency[0]}}": "{{dependency[1]}}"{% unless forloop.last %},{% endunless %}{% endfor %}
26
+ },{% endif %}{% endif %}
27
27
  "author": "{{author}}"
28
28
  }
@@ -1,2 +0,0 @@
1
- -- This file stores your database schema. If deployed on oxygen, your cloud
2
- -- database will stay updated with this schema.