sinto 1.6.0 → 1.6.1

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/genweb/genweb.js CHANGED
@@ -16,7 +16,7 @@ const createWeb = () => {
16
16
  const currentDirectory = process.cwd();
17
17
 
18
18
  createDirectory(`${currentDirectory}/src`);
19
- createDirectory(`${currentDirectory}/assets`);
19
+ createDirectory(`${currentDirectory}/src/assets`);
20
20
 
21
21
  createFile(`${currentDirectory}/src/style.css`, '');
22
22
  createFile(`${currentDirectory}/src/app.js`, '');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinto",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Website project development manager",
5
5
  "bin": {
6
6
  "sin": "sin.js"
package/sin.js CHANGED
@@ -16,7 +16,7 @@ const program = new Command();
16
16
  program
17
17
  .name('sin')
18
18
  .description('Project handler')
19
- .version('1.6.0');
19
+ .version('1.6.1');
20
20
 
21
21
  program
22
22
  .command('init')