@contentful/app-scripts 0.16.0-alpha.2 → 0.16.0-alpha.3

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.
Files changed (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -7,7 +7,7 @@ This project makes easy to perform some recurrent operations in [Contentful's Ap
7
7
  Locally:
8
8
 
9
9
  ```shell
10
- npm i --save @contentful/app-scripts
10
+ npm i @contentful/app-scripts
11
11
  ```
12
12
 
13
13
  Globally:
@@ -28,14 +28,12 @@ $ contentful-app-scripts create-app-definition
28
28
 
29
29
  Otherwise
30
30
  ```
31
- $ npx --no-install @contentful/app-scripts create-app-definition
31
+ $ npx @contentful/app-scripts create-app-definition
32
32
  ```
33
33
 
34
34
  ### 👨‍💻 Programmatic
35
35
 
36
36
  ```javascript
37
- // my-script.js
38
-
39
37
  const { createAppDefinition } = require('@contentful/app-scripts')
40
38
  const { myCustomLogic } = require('./my-custom-logic')
41
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/app-scripts",
3
- "version": "0.16.0-alpha.2",
3
+ "version": "0.16.0-alpha.3",
4
4
  "description": "A collection of scripts for building Contentful Apps",
5
5
  "author": "Contentful GmbH",
6
6
  "license": "MIT",
@@ -29,8 +29,7 @@
29
29
  "lint:fix": "npm run lint -- --fix",
30
30
  "test": "mocha ./lib/**/*.test.js ./lib/*.test.js ./utils/**/*.test.js",
31
31
  "test:watch": "npm t -- --watch",
32
- "pre-commit": "lint-staged",
33
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
32
+ "pre-commit": "lint-staged"
34
33
  },
35
34
  "bugs": {
36
35
  "url": "https://github.com/contentful/create-contentful-app/issues"
@@ -61,5 +60,5 @@
61
60
  "open": "^8.0.5",
62
61
  "ora": "^5.4.0"
63
62
  },
64
- "gitHead": "a66c3394d79d19a999d6509ec967b8b85eca41cc"
63
+ "gitHead": "fb5a4faf89f78af13da791f60f549a27d416359a"
65
64
  }