mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-23 21:51:30 +01:00
20 lines
500 B
Markdown
20 lines
500 B
Markdown
# SH2 Commands
|
|
|
|
```bash
|
|
# @scripthaus command webpack-watch
|
|
# @scripthaus cd :current
|
|
node_modules/.bin/webpack --watch --config webpack.dev.js
|
|
```
|
|
|
|
```bash
|
|
# @scripthaus command devserver
|
|
# @scripthaus cd :current
|
|
node_modules/.bin/webpack-dev-server --config webpack.dev.js --host 0.0.0.0
|
|
```
|
|
|
|
```bash
|
|
# @scripthaus command typecheck
|
|
# @scripthaus cd :current
|
|
node_modules/.bin/tsc --jsx preserve --noEmit --esModuleInterop --target ES5 --experimentalDecorators --downlevelIteration src/sh2.ts
|
|
```
|