@actionishope/shelley 中文文档教程
Stylable App
Stylable 驱动的应用程序。 使用 create-stylable-app
生成。
Development
以下脚本可用:
npm run build
- 在生产模式下将应用程序构建到名为 dist
的文件夹中。 可以使用任何 HTTP 服务器提供此文件夹。 使用 webpack。
npm run serve
- 静态服务于 dist
文件夹。 使用 服务。
npm start
- 在开发模式下启动应用程序(并打开网络浏览器)。 使用 webpack-dev-server。
npm run clean
- 删除 dist
文件夹。 使用 rimraf。
npm run typecheck
- 验证句法/语义正确性。 使用 打字稿。
npm run lint
- 验证最佳实践并查找常见问题。 使用 eslint。
npm test
- 执行 typecheck
和 lint
脚本。
Stylable App
Stylable-powered application. Generated using create-stylable-app
.
Development
The following scripts are available:
npm run build
- Build the application in production mode into a folder named dist
. This folder can be served using any HTTP server. Uses webpack.
npm run serve
- Statically serve the dist
folder. Uses serve.
npm start
- Start the application in development mode (and open the web browser). Uses webpack-dev-server.
npm run clean
- Delete the dist
folder. Uses rimraf.
npm run typecheck
- Verify syntactic/semantic correctness. Uses typescript.
npm run lint
- Verify best practices and find common issues. Uses eslint.
npm test
- Execute typecheck
and lint
scripts.