File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ Tests a Stencil project. The flags below are the available options for the `test
4444| ------| -------------|
4545| ` --spec ` | Tests ` .spec.ts ` files using [ Jest] ( https://jestjs.io/ ) . |
4646| ` --e2e ` | Tests ` .e2e.ts ` files using [ Puppeteer] ( https://developers.google.com/web/tools/puppeteer ) and [ Jest] ( https://jestjs.io/ ) . |
47+ | ` --no-build ` | Skips build process before running the tests. (You are expected to have built it beforehand). |
4748
4849
4950## ` stencil `
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ export const config = {
4848
4949### Related Plugins
5050
51- - [ @stencil/less ] ( https://www.npmjs.com/package/@stencil/less )
52- - [ @stencil/postcss ] ( https://www.npmjs.com/package/@stencil/postcss )
5351- [ @stencil/sass ] ( https://www.npmjs.com/package/@stencil/sass )
54- - [ @stencil/stylus ] ( https://www.npmjs.com/package/@stencil/stylus )
52+ - [ @stencil-community/postcss ] ( https://www.npmjs.com/package/@stencil-community/postcss )
53+ - (Deprecated) [ @stencil/less ] ( https://www.npmjs.com/package/@stencil/less )
54+ - (Deprecated) [ @stencil/stylus ] ( https://www.npmjs.com/package/@stencil/stylus )
5555
5656
5757## Node Polyfills
Original file line number Diff line number Diff line change @@ -56,9 +56,10 @@ yarn global add lerna
5656> If you already have a monorepo, skip this section.
5757
5858``` bash
59- # From your top-most-directory/
59+ # From your top-most-directory/, initialize a workspace
6060lerna init
61- # or if you are using other monorepo tools, initialize a workspace
61+
62+ # install typescript and node types
6263npm install typescript @types/node --save-dev
6364# or if you are using yarn
6465yarn add typescript @types/node --dev
You can’t perform that action at this time.
0 commit comments