create-nextspark-app 0.1.0-beta.77 → 0.1.0-beta.79
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/dist/index.js +0 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -54,11 +54,6 @@ async function createProject(options) {
|
|
|
54
54
|
};
|
|
55
55
|
await fs.writeJson(path.join(projectPath, "package.json"), packageJson, { spaces: 2 });
|
|
56
56
|
pkgSpinner.succeed(" package.json created");
|
|
57
|
-
const npmrcContent = `# Hoist @nextsparkjs/core dependencies so they're accessible from the project
|
|
58
|
-
# This is required for pnpm to make peer dependencies available
|
|
59
|
-
public-hoist-pattern[]=*
|
|
60
|
-
`;
|
|
61
|
-
await fs.writeFile(path.join(projectPath, ".npmrc"), npmrcContent);
|
|
62
57
|
const cliSpinner = ora(" Installing @nextsparkjs/core and @nextsparkjs/cli...").start();
|
|
63
58
|
try {
|
|
64
59
|
const localCoreTarball = findLocalTarball("@nextsparkjs/core");
|