proto-tailwindcss-clrs 0.0.500 → 0.0.504
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +21 -0
- package/package.json +12 -11
- package/pnpm-workspace.yaml +26 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# .github/workflows/publish.yml
|
|
2
|
+
name: Publish package
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
tags:
|
|
7
|
+
- 'v*.*.*'
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
publish:
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
id-token: write
|
|
14
|
+
uses: eswat2/.github/.github/workflows/npm-publish-reusable.yml@main
|
|
15
|
+
with:
|
|
16
|
+
node-version: '22'
|
|
17
|
+
run-tests: true
|
|
18
|
+
run-build: true
|
|
19
|
+
run-card: false
|
|
20
|
+
publish-command: 'npm publish --access public --provenance'
|
|
21
|
+
# no secrets: NPM_PUBLISH_TOKEN here
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proto-tailwindcss-clrs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.504",
|
|
4
4
|
"description": "Tailwind CSS 3.x plugin that generates color classes for CSS variables.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Richard Hess <eswat2@gmail.com>",
|
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"node": ">=18"
|
|
13
13
|
},
|
|
14
14
|
"private": false,
|
|
15
|
+
"scripts": {
|
|
16
|
+
"bump": "bumpp patch --commit --tag --push --yes",
|
|
17
|
+
"release": "pnpm bump && pnpm test",
|
|
18
|
+
"build": "echo --skip",
|
|
19
|
+
"preinstall": "npx only-allow pnpm",
|
|
20
|
+
"format": "prettier --write *.js cSpell.json",
|
|
21
|
+
"test": "jest"
|
|
22
|
+
},
|
|
15
23
|
"publishConfig": {
|
|
16
24
|
"registry": "https://registry.npmjs.org/"
|
|
17
25
|
},
|
|
@@ -22,16 +30,9 @@
|
|
|
22
30
|
"jest-matcher-css": "1.1.0",
|
|
23
31
|
"only-allow": "1.2.2",
|
|
24
32
|
"postcss": "8.5.15",
|
|
25
|
-
"rollup": "4.
|
|
33
|
+
"rollup": "4.62.0",
|
|
26
34
|
"tailwindcss": "3.4.17",
|
|
27
35
|
"yoctocolors": "2.1.2"
|
|
28
36
|
},
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"release": "pnpm bump && pnpm test && pnpm publish",
|
|
32
|
-
"build": "echo --skip",
|
|
33
|
-
"preinstall": "npx only-allow pnpm",
|
|
34
|
-
"format": "prettier --write *.js cSpell.json",
|
|
35
|
-
"test": "jest"
|
|
36
|
-
}
|
|
37
|
-
}
|
|
37
|
+
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620"
|
|
38
|
+
}
|
package/pnpm-workspace.yaml
CHANGED
|
@@ -7,4 +7,29 @@ allowBuilds:
|
|
|
7
7
|
'unrs-resolver': true
|
|
8
8
|
|
|
9
9
|
minimumReleaseAgeExclude:
|
|
10
|
-
-
|
|
10
|
+
- '@rollup/rollup-android-arm-eabi@4.62.0'
|
|
11
|
+
- '@rollup/rollup-android-arm64@4.62.0'
|
|
12
|
+
- '@rollup/rollup-darwin-arm64@4.62.0'
|
|
13
|
+
- '@rollup/rollup-darwin-x64@4.62.0'
|
|
14
|
+
- '@rollup/rollup-freebsd-arm64@4.62.0'
|
|
15
|
+
- '@rollup/rollup-freebsd-x64@4.62.0'
|
|
16
|
+
- '@rollup/rollup-linux-arm-gnueabihf@4.62.0'
|
|
17
|
+
- '@rollup/rollup-linux-arm-musleabihf@4.62.0'
|
|
18
|
+
- '@rollup/rollup-linux-arm64-gnu@4.62.0'
|
|
19
|
+
- '@rollup/rollup-linux-arm64-musl@4.62.0'
|
|
20
|
+
- '@rollup/rollup-linux-loong64-gnu@4.62.0'
|
|
21
|
+
- '@rollup/rollup-linux-loong64-musl@4.62.0'
|
|
22
|
+
- '@rollup/rollup-linux-ppc64-gnu@4.62.0'
|
|
23
|
+
- '@rollup/rollup-linux-ppc64-musl@4.62.0'
|
|
24
|
+
- '@rollup/rollup-linux-riscv64-gnu@4.62.0'
|
|
25
|
+
- '@rollup/rollup-linux-riscv64-musl@4.62.0'
|
|
26
|
+
- '@rollup/rollup-linux-s390x-gnu@4.62.0'
|
|
27
|
+
- '@rollup/rollup-linux-x64-gnu@4.62.0'
|
|
28
|
+
- '@rollup/rollup-linux-x64-musl@4.62.0'
|
|
29
|
+
- '@rollup/rollup-openbsd-x64@4.62.0'
|
|
30
|
+
- '@rollup/rollup-openharmony-arm64@4.62.0'
|
|
31
|
+
- '@rollup/rollup-win32-arm64-msvc@4.62.0'
|
|
32
|
+
- '@rollup/rollup-win32-ia32-msvc@4.62.0'
|
|
33
|
+
- '@rollup/rollup-win32-x64-gnu@4.62.0'
|
|
34
|
+
- '@rollup/rollup-win32-x64-msvc@4.62.0'
|
|
35
|
+
- rollup@4.62.0
|