You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ npm install
25
25
26
26
## Linting
27
27
28
-
### ✤ Linting TypeScript
28
+
### Linting TypeScript
29
29
30
30
```shell
31
31
npm run lint:ts
@@ -34,7 +34,7 @@ npm run lint:ts
34
34
`npm run lint:ts` will lint the TypeScript source code using ESLint, identifying syntactic and stylistic errors based on a configured set of rules.
35
35
TypeScript linting configurations and rules can be found, edited, and updated in `eslint.config.ts.mjs`.
36
36
37
-
### ✤ Linting JavaScript
37
+
### Linting JavaScript
38
38
39
39
```shell
40
40
npm run lint:js
@@ -45,7 +45,7 @@ JavaScript linting configurations and rules can be found, edited, and updated in
45
45
46
46
## Building
47
47
48
-
### ✤ Development Mode
48
+
### Development Mode
49
49
50
50
```shell
51
51
npm run build:dev
@@ -55,7 +55,7 @@ npm run build:dev
55
55
This should identify any compiler errors present in your source code.
56
56
The webpack build configuration can be found in `webpack.config.cjs`.
57
57
58
-
### ✤ Production Mode
58
+
### Production Mode
59
59
60
60
```shell
61
61
npm run build:prod
@@ -64,7 +64,7 @@ npm run build:prod
64
64
`npm run build:prod` will bundle your sketch in production mode using webpack.
65
65
The webpack build configuration can be found in `webpack.config.cjs`.
66
66
67
-
### ✤ Development Mode with Single File Output
67
+
### Development Mode with Single File Output
68
68
69
69
```shell
70
70
npm run build:dev:single-file
@@ -75,7 +75,7 @@ The resulting bundle will have your source code and all its dependencies in a si
75
75
This should identify any compiler errors present in your source code.
76
76
The webpack build configuration can be found in `webpack.single-file.config.cjs`.
77
77
78
-
### ✤ Production Mode with Single File Output
78
+
### Production Mode with Single File Output
79
79
80
80
```shell
81
81
npm run build:prod:single-file
@@ -87,31 +87,31 @@ The webpack build configuration can be found in `webpack.single-file.config.cjs`
87
87
88
88
## Serving
89
89
90
-
### ✤ Serving the Development Bundle
90
+
### Serving the Development Bundle
91
91
92
92
```shell
93
93
npm run dev
94
94
```
95
95
96
96
`npm run dev` will bundle the sketch in development mode, start a localhost development server (`127.0.0.1:8080`), and open a new browser window for the `index.html` file bundled with the compiled sketch.
97
97
98
-
### ✤ Serving the Development Bundle with Single File Output
98
+
### Serving the Development Bundle with Single File Output
99
99
100
100
```shell
101
101
npm run dev:single-file
102
102
```
103
103
104
104
`npm run dev:single-file` will bundle the sketch in development mode with `webpack.single-file.config.cjs`, start a localhost development server (`127.0.0.1:8080`), and open a new browser window for the `index.html` file bundled with the compiled sketch.
105
105
106
-
### ✤ Serving the Production Bundle
106
+
### Serving the Production Bundle
107
107
108
108
```shell
109
109
npm run dev:prod
110
110
```
111
111
112
112
`npm run dev:prod` will bundle the sketch in production mode, start a localhost development server (`127.0.0.1:8080`), and open a new browser window for the `index.html` file bundled with the compiled sketch.
113
113
114
-
### ✤ Serving the Production Bundle with Single File Output
114
+
### Serving the Production Bundle with Single File Output
0 commit comments