Skip to content

Commit 8a4e7e4

Browse files
committed
Merge branch 'master' into v3.0.0-dev
2 parents 6504e81 + ec27950 commit 8a4e7e4

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/docs/config/cli.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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`

src/docs/config/plugins.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

src/docs/framework-integration/vue.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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
6060
lerna init
61-
# or if you are using other monorepo tools, initialize a workspace
61+
62+
# install typescript and node types
6263
npm install typescript @types/node --save-dev
6364
# or if you are using yarn
6465
yarn add typescript @types/node --dev

0 commit comments

Comments
 (0)