contentful-migration 4.5.8 → 4.5.9
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 +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentful-migration",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.9",
|
|
4
4
|
"description": "Migration tooling for contentful",
|
|
5
5
|
"author": "Contentful GmbH",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,18 +26,18 @@
|
|
|
26
26
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
27
27
|
"build-dev": "npm run clean && tsc -p tsconfig-dev.json",
|
|
28
28
|
"prepare": "npm run build",
|
|
29
|
-
"test": "NOCK_RECORD=0 npm run build && npm run test
|
|
30
|
-
"test
|
|
31
|
-
"test
|
|
32
|
-
"test
|
|
33
|
-
"test
|
|
34
|
-
"test
|
|
29
|
+
"test": "NOCK_RECORD=0 npm run build && npm run test:unit && npm run test:integration && npm run test:e2e && npm run lint && npm run test:typescript-declaration",
|
|
30
|
+
"test:watch": "npm run test:unit -- --watch",
|
|
31
|
+
"test:unit": "NODE_ENV=test mocha --require test/setup-unit.js --recursive 'test/unit/**/**/*.spec.{js,ts}'",
|
|
32
|
+
"test:integration": "NODE_ENV=test mocha --require test/integration/setup.js 'test/integration/**/*.spec.js'",
|
|
33
|
+
"test:e2e": "NODE_ENV=test mocha 'test/end-to-end/**/*.spec.js'",
|
|
34
|
+
"test:typescript-declaration": "tsc --strict --noEmit index.d.ts",
|
|
35
35
|
"lint": "eslint 'examples/**/*.js' 'test/**/*.js' 'src/**/*.js' && tslint --project tsconfig-dev.json --config tslint.json -e '**/*.js'",
|
|
36
36
|
"semantic-release": "semantic-release",
|
|
37
37
|
"travis-deploy-once": "travis-deploy-once",
|
|
38
|
-
"test
|
|
39
|
-
"test
|
|
40
|
-
"test
|
|
38
|
+
"test:unit:debug": "NODE_ENV=test mocha debug --require test/setup-unit.js --recursive 'test/unit/**/**/*.spec.{js,ts}'",
|
|
39
|
+
"test:integration:debug": "NODE_ENV=test mocha debug --require test/integration/setup.js 'test/integration/**/*.spec.js'",
|
|
40
|
+
"test:e2e:debug": "NODE_ENV=test mocha debug 'test/end-to-end/**/*.spec.js'",
|
|
41
41
|
"cm": "git-cz"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|