Commit
+13 -6 +/-2 browse
1 | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml |
2 | index a1c982b..92c570c 100644 |
3 | --- a/.github/workflows/tests.yml |
4 | +++ b/.github/workflows/tests.yml |
5 | @@ -1,6 +1,6 @@ |
6 | name: Tests |
7 | |
8 | - on: [pull_request] |
9 | + on: [push, pull_request, workflow_dispatch] |
10 | |
11 | jobs: |
12 | test: |
13 | @@ -10,4 +10,4 @@ jobs: |
14 | - uses: actions/setup-node@v2 |
15 | - run: npm ci |
16 | - run: npm run lib:js |
17 | - - run: npm test |
18 | \ No newline at end of file |
19 | + - run: npm test |
20 | diff --git a/readme.md b/readme.md |
21 | index 7f8850a..999be56 100644 |
22 | --- a/readme.md |
23 | +++ b/readme.md |
24 | @@ -1,12 +1,19 @@ |
25 | - [](https://github.com/argyleink/open-props/actions/workflows/tests.yml) |
26 | +  |
27 | |
28 | - ## Open Props (WIP) |
29 | - > Grab n' go CSS custom properties |
30 | + ## Open source CSS variables |
31 | + `gradients` `animations` `sizes` `easings` `colors` `shadows` `aspect-ratios` `z-indexes` |
32 | |
33 | - 👉 [Discord](https://discord.gg/AqA4fU886r) |
34 | + [](https://github.com/argyleink/open-props/actions/workflows/tests.yml) |
35 | + |
36 | + <br> |
37 | + |
38 | + ### Need help? 👉 [Discord](https://discord.gg/AqA4fU886r) |
39 | + |
40 | + <br> |
41 | |
42 | #### CLI |
43 | - `npm run gen:op` - runs through `src/` js files and creates the PostCSS files in `src/` |
44 | - `npm run gen:nowhere` - creates a version of Open Props without the use of `:where()` |
45 | - `npm run gen:prefixed` - creates a version of Open Props with each prop prefixed with `op`, like `--op-font-size-1` |
46 | - `npm run bundle` - creates all the various minified bundles of props |
47 | + - `npm run lib:js` - builds the JS modules for NPM |