slicejs-cli 1.0.40 → 1.0.41

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/client.js +2 -3
  2. package/package.json +1 -1
package/client.js CHANGED
@@ -14,9 +14,8 @@ sliceClient
14
14
  sliceClient
15
15
  .command('init')
16
16
  .description('Initialize the project')
17
- .action((projectType) => {
18
- if(!projectType) projectType = 'basic';
19
- initializeProject(projectType);
17
+ .action(() => {
18
+ initializeProject("basic");
20
19
  });
21
20
 
22
21
  sliceClient
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-cli",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "Command client for developing web applications with Slice.js framework",
5
5
  "main": "client.js",
6
6
  "scripts": {