File tree 1 file changed +14
-7
lines changed
1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -124,11 +124,18 @@ const res = isMyDataValid(data)
124
124
* ` npm run test ` - run build process and tests for all modules
125
125
* ` npm run test:build ` - run build process for all modules
126
126
127
- #### Docs
127
+ #### Benchmark Viewer
128
128
129
- * ` npm run docs:serve ` - result viewer
130
- * ` npm run docs:build ` - build docs
131
- * ` npm run docs:watch ` - watch docs for changes and rebuild
129
+ A basic preact+vite app lives in [ ` /docs ` ] ( /tree/master/docs ) .
130
+ It is deployed via github pages whenever something has been pushed to the main branch.
131
+
132
+ ``` sh
133
+ cd docs
134
+
135
+ npm run dev # develop
136
+ npm run build # build
137
+ npm run preview # preview the build
138
+ ```
132
139
133
140
#### Linting
134
141
@@ -163,18 +170,18 @@ const res = isMyDataValid(data)
163
170
### Node.js runtime
164
171
165
172
* update Node.js version matrix in ` .github/workflows/pr.yml ` and ` .github/workflows/release.yml `
166
- * update ` NODE_VERSIONS ` in ` docs/dist/app .tsx ` and run ` npm run docs:build `
173
+ * update ` NODE_VERSIONS ` in ` docs/src/App .tsx `
167
174
* optionally set ` NODE_VERSION_FOR_PREVIEW ` in ` benchmarks/helpers/main.ts `
168
175
169
176
### Bun runtime
170
177
171
178
* update bun version matrix in ` .github/workflows/pr.yml ` and ` .github/workflows/release.yml `
172
- * update ` BUN_VERSIONS ` in ` docs/dist/app .tsx ` and run ` npm run docs:build `
179
+ * update ` BUN_VERSIONS ` in ` docs/src/App .tsx `
173
180
174
181
### Deno runtime
175
182
176
183
* update Deno version matrix in ` .github/workflows/pr.yml ` and ` .github/workflows/release.yml `
177
- * update ` DENO_VERSIONS ` in ` docs/dist/app .tsx ` and run ` npm run docs:build `
184
+ * update ` DENO_VERSIONS ` in ` docs/src/App .tsx `
178
185
179
186
## Test cases
180
187
You can’t perform that action at this time.
0 commit comments