create-cubing-app 0.35.6-rc11 → 0.35.6-rc12
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/Makefile +3 -0
- package/bin/create-cubing-app.js +3 -1
- package/package.json +1 -1
package/Makefile
ADDED
package/bin/create-cubing-app.js
CHANGED
|
@@ -17,7 +17,9 @@ function execPromise(cmd, options) {
|
|
|
17
17
|
});
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
await execPromise("npm install validate-npm-package-name"
|
|
20
|
+
await execPromise("npm install validate-npm-package-name", {
|
|
21
|
+
cwd: new URL(".", import.meta.url),
|
|
22
|
+
});
|
|
21
23
|
|
|
22
24
|
function badPackageName() {
|
|
23
25
|
stderr.write(`Please specify a valid project name!
|