Skip to content
This repository was archived by the owner on Dec 6, 2018. It is now read-only.

fix: change name in bsconfig.json to package name #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,16 @@ https://github.com/npm/npm/issues/16991

// Copy the files for the user
await fse.copy(path.join(ownPath, 'template'), appPath);

// Change the name in bsconfig.json to package's name
const appBsConfigPath: string = path.join(appPath, 'bsconfig.json');
const appBsConfig = JSON.parse(await fse.readFile(appBsConfigPath));

appBsConfig.name = appName;

// Write the new appBsConfig
await fse.writeFile(appBsConfigPath, JSON.stringify(appBsConfig, null, 2));


// Rename gitignore after the fact to prevent npm from renaming it to .npmignore
try {
Expand Down