-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2484794
commit 3963fbe
Showing
4 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: BlankParticle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Release 🚀 | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
release: | ||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code 🛎 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Pnpm 📦 | ||
uses: pnpm/action-setup@v2 | ||
|
||
- name: Setup Node.js 🟩 | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: "pnpm" | ||
node-version: "20" | ||
|
||
- name: Install Dependencies 📦 | ||
run: pnpm install | ||
|
||
- name: Create Git Release 🏷 | ||
run: pnpx changelogithub | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Build 🏗 | ||
run: pnpm build | ||
|
||
- name: Publish to NPM 🚀 | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
NPM_CONFIG_PROVENANCE: true | ||
run: | | ||
npm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" | ||
pnpm publish --access public --no-git-checks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
src/ | ||
README.md | ||
biome.json | ||
.github/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "tailwind-plugin-realtime-colors", | ||
"main": "dist/plugin.js", | ||
"main": "dist/plugin.cjs", | ||
"module": "dist/plugin.js", | ||
"version": "0.0.0", | ||
"description": "A Tailwind CSS plugin that allows you to load colors from URL of Realtime Colors", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "tsup src/*.ts --watch --dts", | ||
|
@@ -24,5 +27,27 @@ | |
}, | ||
"peerDependencies": { | ||
"tailwindcss": "^3.3.5" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors/issues" | ||
}, | ||
"homepage": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors", | ||
"keywords": ["tailwindcss", "tailwind", "tailwind-plugin", "realtime-colors"], | ||
"funding": [ | ||
{ | ||
"type": "github", | ||
"url": "https://github.com/sponsors/BlankParticle" | ||
} | ||
], | ||
"author": { | ||
"name": "BlankParticle", | ||
"email": "[email protected]", | ||
"url": "https://blankparticle.in" | ||
}, | ||
"packageManager": "[email protected]", | ||
"license": "MIT" | ||
} |