@@ -26,7 +26,7 @@ instructions:
26
26
### Quick start
27
27
28
28
1 . fork the repo and clone it locally
29
- 2 . ` npm run get-me-going ` to install and build dependencies
29
+ 2 . ` npm run setup-workspace ` to install and build dependencies
30
30
3 . ` cd plugins/<plugin-name> `
31
31
4 . ` npm run build && npm run test ` to build and test the plugin after making changes
32
32
5 . open a pull request with the changes
@@ -58,7 +58,7 @@ Receiving early feedback on your work will help you iterate more quickly in the
58
58
# Install and build the needed things to start local development
59
59
# This also does an initial test of everything.
60
60
# If this gives errors please open an issue so that we can look into it.
61
- npm run get-me-going
61
+ npm run setup-workspace
62
62
```
63
63
64
64
* If you want to contribute to sites, you need to run the following command:
@@ -67,7 +67,7 @@ Receiving early feedback on your work will help you iterate more quickly in the
67
67
cd sites
68
68
# Install the needed things to start local development
69
69
# If this gives errors please open an issue so that we can look into it.
70
- npm run get-me-going
70
+ npm run setup-workspace
71
71
```
72
72
73
73
3 . Create a branch for your feature or fix:
@@ -111,7 +111,7 @@ That’s it! Now [open a pull request] with a clear title and description.
111
111
## Creating a new plugin here
112
112
113
113
- Follow the guide for submitting a pull request
114
- - Run ` npm run get-me-going ` if you want to start local development.
114
+ - Run ` npm run setup-workspace ` if you want to start local development.
115
115
- Run ` npm run new-plugin ` to create a new plugin.
116
116
117
117
``` bash
@@ -147,7 +147,8 @@ Change "blue" to "purple" in "src/index.ts" and see how it affects the test outc
147
147
148
148
- [ PostCSS API documentation] ( https://postcss.org/api/ )
149
149
- [ PostCSS guidelines for plugins] ( https://github.com/postcss/postcss/blob/main/docs/guidelines/plugin.md )
150
- - [ CSSTools guidelines for plugins] ( https://github.com/csstools/postcss-plugins/wiki/Plugin-best-practices )
150
+ - [ CSSTools technical guidelines for plugins] ( https://github.com/csstools/postcss-plugins/wiki/Plugin-best-practices )
151
+ - [ CSSTools authoring guidelines] ( https://github.com/csstools/postcss-plugins/blob/main/AUTHORING_GUIDELINES.md )
151
152
152
153
## Trouble shooting
153
154
0 commit comments