create-nodality 1.0.0-beta.5 → 1.0.0-beta.6

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/index.js +2 -1
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -97,7 +97,7 @@ export default {
97
97
  type: "module",
98
98
  scripts: {
99
99
  build: "webpack",
100
- start: "serve . -l 4000",
100
+ start: "npx serve . -l 4000",
101
101
  },
102
102
  dependencies: {
103
103
  nodality: "^1.0.0-beta.4",
@@ -134,4 +134,5 @@ if (!args[0]) {
134
134
  process.exit(1);
135
135
  }
136
136
 
137
+ // Create the project
137
138
  createProject(args[0]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nodality",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "Project scaffolding tool for Nodality library",
5
5
  "bin": {
6
6
  "create-nodality": "./bin/index.js"