Skip to content

Commit 8d06606

Browse files
v1.0.1
1 parent 4e20365 commit 8d06606

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.github/workflows/npm-publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: NPM Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish-npm:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 16
15+
registry-url: https://registry.npmjs.org/
16+
- run: npm publish
17+
env:
18+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ export default {
3030
// ...
3131
}
3232
```
33+
34+
## Careers
35+
Explore new opportunities with [Rise8](https://rise8.us/careers/).

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "@rise8/tailwind-pixel-perfect-preset",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Tailwind CSS preset that replaces rem with px.",
55
"author": "Joshua Nathaniel Miller",
66
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/rise8-us/tailwind-pixel-perfect-preset.git"
10+
},
711
"main": "index.js",
812
"peerDependencies": {
913
"tailwindcss": "^3.0.0"

0 commit comments

Comments
 (0)