@edgedev/create-edge-app 1.0.22 → 1.0.24
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/bin/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -41,7 +41,7 @@ const modifyPackageJson = (repoName) => {
|
|
|
41
41
|
const repoName = process.argv[2]
|
|
42
42
|
const gitCheckoutCommand = `git clone --depth 1 https://github.com/Edge-Marketing-and-Design/edgeApp.git ${repoName}`
|
|
43
43
|
const removeGitDirCommand = `rm -rf ${repoName}/.git`
|
|
44
|
-
const installDependenciesCommand = `cd ${repoName} && pnpm install`
|
|
44
|
+
const installDependenciesCommand = `cd ${repoName} && pnpm install --force`
|
|
45
45
|
const installFunctionDependenciesCommand = `cd ${repoName}/functions && npm install`
|
|
46
46
|
const cloneFirebaseFrameworkCommand = `cd ${repoName} && git clone https://github.com/Edge-Marketing-and-Design/edgeFirebaseFramework`
|
|
47
47
|
|