@shopify/create-app 0.30.1 → 0.30.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @shopify/create-app
2
2
 
3
+ ## 0.30.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Add scaffold to the package.json's scripts section of the app template
8
+
3
9
  ## 0.30.1
4
10
 
5
11
  ### Patch Changes
@@ -40019,7 +40019,7 @@ const username = async () => {
40019
40019
  };
40020
40020
 
40021
40021
  var name = "@shopify/cli-kit";
40022
- var version$1 = "0.30.1";
40022
+ var version$1 = "0.30.2";
40023
40023
  var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
40024
40024
  var keywords = [
40025
40025
  "shopify",
@@ -40113,7 +40113,7 @@ var cliKitPackageJson = {
40113
40113
  devDependencies: devDependencies
40114
40114
  };
40115
40115
 
40116
- var version = "0.30.1";
40116
+ var version = "0.30.2";
40117
40117
 
40118
40118
  const constants = {
40119
40119
  environmentVariables: {
package/dist/index.js CHANGED
@@ -33819,7 +33819,7 @@ packageJson$1.exports.PackageNotFoundError = PackageNotFoundError;
33819
33819
  packageJson$1.exports.VersionNotFoundError = VersionNotFoundError;
33820
33820
 
33821
33821
  var name = "@shopify/cli-kit";
33822
- var version$1 = "0.30.1";
33822
+ var version$1 = "0.30.2";
33823
33823
  var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
33824
33824
  var keywords = [
33825
33825
  "shopify",
@@ -33913,7 +33913,7 @@ var cliKitPackageJson = {
33913
33913
  devDependencies: devDependencies
33914
33914
  };
33915
33915
 
33916
- var version = "0.30.1";
33916
+ var version = "0.30.2";
33917
33917
 
33918
33918
  const constants = {
33919
33919
  environmentVariables: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopify/create-app",
3
- "version": "0.30.1",
3
+ "version": "0.30.2",
4
4
  "private": false,
5
5
  "description": "A CLI tool to create a new Shopify app.",
6
6
  "type": "module",
@@ -7,7 +7,8 @@
7
7
  "build": "shopify app build",
8
8
  "dev": "shopify app dev",
9
9
  "test": "shopify app test",
10
- "push": "shopify app push"
10
+ "push": "shopify app push",
11
+ "scaffold": "shopify app scaffold"
11
12
  },
12
13
  "dependencies": {
13
14
  "@shopify/cli": "{{shopify_cli_version}}",