create-tateru-cli 0.1.0 → 0.2.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-tateru-cli",
3
3
  "description": "Create basic Tateru CLI project from template files",
4
- "version": "0.1.0",
4
+ "version": "0.2.0",
5
5
  "bin": {
6
6
  "create-tateru-cli": "./lib/index.js"
7
7
  },
@@ -9,7 +9,7 @@ indent_style = space
9
9
  trim_trailing_whitespace = true
10
10
  insert_final_newline = true
11
11
 
12
- [*.{js,jsx,ts,tsx,vue}]
12
+ [*.{js,jsx,ts,tsx,vue,mjs}]
13
13
  indent_size = 2
14
14
  quote_type = single
15
15
 
@@ -0,0 +1,4 @@
1
+ {
2
+ "tabWidth": 2,
3
+ "useTabs": false
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "configurations": [
3
+ {
4
+ "name": "Tateru-CLI: watch",
5
+ "type": "chrome",
6
+ "request": "launch",
7
+ "url": "http://localhost:3000"
8
+ }
9
+ ]
10
+ }
@@ -1 +1,57 @@
1
- # tateru-starter
1
+ # tateru-cli-gulp-vanilla
2
+
3
+ Basic template for static site generation using Tateru CLI.
4
+
5
+ ## Usage
6
+
7
+ ### 1. Install dependencies:
8
+
9
+ ```sh
10
+ npm install
11
+ ```
12
+
13
+ ### 2. Start development:
14
+
15
+ ```sh
16
+ npm run dev
17
+ ```
18
+
19
+ ### 3. Build for production:
20
+
21
+ ```sh
22
+ npm run build:prod
23
+ ```
24
+
25
+ ## Development
26
+
27
+ ### Commands
28
+
29
+ ```sh
30
+ npm run dev
31
+ ```
32
+
33
+ Starts the development environment with file watching and live reload.
34
+
35
+ ```sh
36
+ npm run build
37
+ ```
38
+
39
+ Builds the project for development.
40
+
41
+ ```sh
42
+ npm run build:prod
43
+ ```
44
+
45
+ Builds the project for production with optimizations.
46
+
47
+ ```sh
48
+ npm run lint
49
+ ```
50
+
51
+ Runs ESLint to check and fix code style issues.
52
+
53
+ ```sh
54
+ npm run clean:dist
55
+ ```
56
+
57
+ Cleans the `dist/` folder by removing all its contents.