Skip to content

Commit

Permalink
chore(ownership): move postcss plugin to stencil-community (#43)
Browse files Browse the repository at this point in the history
this is the first commit necessary to move the postcss plugin to the
community model. it changes the name of the package to
`@stencil-community/postcss` (from `@stencil/postcss`).
  • Loading branch information
rwaskiewicz authored Aug 8, 2022
1 parent e072e18 commit b67ae6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@stencil/postcss",
"name": "@stencil-community/postcss",
"version": "2.1.0",
"license": "MIT",
"main": "dist/index.cjs.js",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# @stencil/postcss
# @stencil-community/postcss

This package is used in order to integrate with postcss and all of its plugins.

First, npm install within the project:

```
npm install @stencil/postcss --save-dev
npm install @stencil-community/postcss --save-dev
```

Next, within the project's `stencil.config.ts` file, import the plugin and add
Expand All @@ -20,7 +20,7 @@ This plugin requires Node.js 14 or higher. For older Node versions, see the 1.x
#### stencil.config.ts
```ts
import { Config } from '@stencil/core';
import { postcss } from '@stencil/postcss';
import { postcss } from '@stencil-community/postcss';
import autoprefixer from 'autoprefixer';

export const config: Config = {
Expand Down

0 comments on commit b67ae6b

Please sign in to comment.