@edgedev/create-edge-app 1.0.33 → 1.0.34

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/bin/cli.js +1 -8
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -42,8 +42,7 @@ const repoName = process.argv[2]
42
42
 
43
43
  const gitCheckoutCommand = `git clone --depth 1 https://github.com/Edge-Marketing-and-Design/edgeApp.git ${repoName}`
44
44
  const removeGitDirCommand = `rm -rf ${repoName}/.git`
45
- const installDependenciesCommand = `cd ${repoName} && pnpm install`
46
- const installFirebaseCommand = `cd ${repoName} && pnpm store prune && pnpm install --force --ignore-scripts=false @edgedev/firebase`
45
+ const installDependenciesCommand = `cd ${repoName} && pnpm store prune && pnpm install --force --ignore-scripts=false`
47
46
  const installFunctionDependenciesCommand = `cd ${repoName}/functions && npm install`
48
47
  const cloneFirebaseFrameworkCommand = `cd ${repoName} && git clone https://github.com/Edge-Marketing-and-Design/edgeFirebaseFramework`
49
48
 
@@ -71,12 +70,6 @@ if (!installedDeps) {
71
70
  process.exit(1)
72
71
  }
73
72
 
74
- console.log(`Installing @edgedev/firebase for ${repoName}...`) // New log
75
- const installedFirebase = runCommand(installFirebaseCommand) // New command execution
76
- if (!installedFirebase) {
77
- process.exit(1)
78
- }
79
-
80
73
  console.log(`Installing function dependencies for ${repoName}...`)
81
74
  const installedFunctionDeps = runCommand(installFunctionDependenciesCommand)
82
75
  if (!installedFunctionDeps) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/create-edge-app",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Create Edge Starter App",
5
5
  "bin": {
6
6
  "create-edge-app": "./bin/cli.js"