@contentful/create-contentful-app 1.8.4 → 1.8.7
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/lib/includeAppAction.js +2 -4
- package/package.json +4 -4
package/lib/includeAppAction.js
CHANGED
|
@@ -30,10 +30,8 @@ function cloneAppAction(destination, templateIsTypescript) {
|
|
|
30
30
|
yield d.clone(appActionDirectoryPath);
|
|
31
31
|
// move the manifest from the actions folder to the root folder
|
|
32
32
|
(0, fs_1.renameSync)(`${appActionDirectoryPath}/${constants_1.CONTENTFUL_APP_MANIFEST}`, `${destination}/${constants_1.CONTENTFUL_APP_MANIFEST}`);
|
|
33
|
-
// move the build file from the actions folder to the root folder
|
|
34
|
-
|
|
35
|
-
(0, fs_1.renameSync)(`${appActionDirectoryPath}/build-actions.js`, `${destination}/build-actions.js`);
|
|
36
|
-
}
|
|
33
|
+
// move the build file from the actions folder to the root folder
|
|
34
|
+
(0, fs_1.renameSync)(`${appActionDirectoryPath}/build-actions.js`, `${destination}/build-actions.js`);
|
|
37
35
|
// modify package.json build commands
|
|
38
36
|
const packageJsonLocation = (0, path_1.resolve)(`${destination}/package.json`);
|
|
39
37
|
const packageJsonExists = (0, fs_1.existsSync)(packageJsonLocation);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/create-contentful-app",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.7",
|
|
4
4
|
"description": "A template for building Contentful Apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contentful",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"build": "tsc"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@contentful/app-scripts": "1.
|
|
38
|
+
"@contentful/app-scripts": "1.9.1",
|
|
39
39
|
"analytics-node": "^6.2.0",
|
|
40
40
|
"chalk": "4.1.2",
|
|
41
41
|
"commander": "10.0.1",
|
|
42
42
|
"degit": "2.8.4",
|
|
43
43
|
"inquirer": "8.2.5",
|
|
44
44
|
"node-fetch": "2.6.7",
|
|
45
|
-
"rimraf": "5.0.
|
|
45
|
+
"rimraf": "5.0.1",
|
|
46
46
|
"tildify": "2.0.0",
|
|
47
47
|
"validate-npm-package-name": "5.0.0"
|
|
48
48
|
},
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"@types/validate-npm-package-name": "4.0.0",
|
|
70
70
|
"contentful-management": "10.35.3"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "5a5e2e30c7b7044ced5e73365763f8f662fd2349"
|
|
73
73
|
}
|