create-bridge-app
Advanced tools
Comparing version 1.0.9 to 1.0.10
@@ -21,5 +21,5 @@ #!/usr/bin/env node | ||
(0, utils_1.runCommand)({ | ||
command: `mkdir ${name} && cd ${name} && mkdir source && npx tsc --init --outDir dist`, | ||
command: `mkdir ${name} && cd ${name} && npx tsc --init --outDir dist`, | ||
onSuccess: () => { | ||
fs_1.default.writeFile(`${name}/source/package.json`, prettier_1.default.format(`{ | ||
fs_1.default.writeFile(`${name}/package.json`, prettier_1.default.format(`{ | ||
"name": "${name | ||
@@ -39,3 +39,3 @@ .toLowerCase() | ||
}); | ||
fs_1.default.writeFile(`${name}/source/index.ts`, prettier_1.default.format(code_1.indexFile, { parser: 'typescript' }), () => { }); | ||
fs_1.default.writeFile(`${name}/index.ts`, prettier_1.default.format(code_1.indexFile, { parser: 'typescript' }), () => { }); | ||
fs_1.default.writeFile(`${name}/nodemon.json`, prettier_1.default.format(code_1.nodemonFile, { parser: 'json' }), () => { }); | ||
@@ -42,0 +42,0 @@ fs_1.default.writeFile(`${name}/.gitignore`, code_1.gitIgnoreFile, () => { }); |
{ | ||
"name": "create-bridge-app", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "Create Bridge-powered Express app with one command", | ||
@@ -5,0 +5,0 @@ "author": "Bridge Team <support@bridge.codes>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8130