proto-tailwindcss-pxls 0.0.90 → 0.0.92
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/package.json +4 -4
- package/bump.config.ts +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proto-tailwindcss-pxls",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.92",
|
|
4
4
|
"description": "Tailwind CSS 3.x plugin that generates pixel classes for tricky pixel-perfect layouts.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Rob Sawyer <robksawyer@gmail.com>",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"autoprefixer": "10.4.27",
|
|
28
|
-
"bumpp": "11.0.
|
|
28
|
+
"bumpp": "11.0.1",
|
|
29
29
|
"jest": "30.3.0",
|
|
30
30
|
"jest-matcher-css": "1.1.0",
|
|
31
31
|
"lodash": "4.17.23",
|
|
32
32
|
"only-allow": "1.2.2",
|
|
33
33
|
"postcss": "8.5.8",
|
|
34
|
-
"rollup": "4.59.
|
|
34
|
+
"rollup": "4.59.1",
|
|
35
35
|
"tailwindcss": "3.4.17",
|
|
36
36
|
"yoctocolors": "2.1.2"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
|
-
"bump": "bumpp patch --yes",
|
|
39
|
+
"bump": "bumpp patch --commit --tag --push --yes",
|
|
40
40
|
"release": "pnpm bump && pnpm test && pnpm publish",
|
|
41
41
|
"preinstall": "npx only-allow pnpm",
|
|
42
42
|
"test": "jest",
|
package/bump.config.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// bump.config.ts
|
|
2
|
-
import { defineConfig } from 'bumpp'
|
|
3
|
-
import { red, green } from 'yoctocolors'
|
|
4
|
-
|
|
5
|
-
export default defineConfig({
|
|
6
|
-
// enable git operations by default if you like
|
|
7
|
-
// commit can be true or a template string
|
|
8
|
-
commit: 'release v%s', // e.g. "release v0.0.983"
|
|
9
|
-
tag: true,
|
|
10
|
-
push: true,
|
|
11
|
-
|
|
12
|
-
// this runs *after* bumpp has updated the version (but before commit/tag)
|
|
13
|
-
async execute(ctx) {
|
|
14
|
-
// console.log(ctx)
|
|
15
|
-
const op = ctx as any
|
|
16
|
-
const oldVersion = op.state?.currentVersion
|
|
17
|
-
const newVersion = op.state?.newVersion
|
|
18
|
-
|
|
19
|
-
console.log(`version: ${red(oldVersion)} → ${green(newVersion)}`)
|
|
20
|
-
},
|
|
21
|
-
})
|