@digigov/cli-build-tailwind 0.9.1 → 1.0.0-4e7b7994
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/CHANGELOG.json +12 -0
- package/CHANGELOG.md +8 -1
- package/index.js +5 -1
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build-tailwind",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.9.2",
|
|
6
|
+
"tag": "@digigov/cli-build-tailwind_v0.9.2",
|
|
7
|
+
"date": "Wed, 05 Apr 2023 15:16:24 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "fix bug with current color and border color"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.9.0",
|
|
6
18
|
"tag": "@digigov/cli-build-tailwind_v0.9.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Change Log - @digigov/cli-build-tailwind
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 05 Apr 2023 15:16:24 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.9.2
|
|
6
|
+
Wed, 05 Apr 2023 15:16:24 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- fix bug with current color and border color
|
|
4
11
|
|
|
5
12
|
## 0.9.0
|
|
6
13
|
Thu, 02 Feb 2023 16:12:09 GMT
|
package/index.js
CHANGED
|
@@ -19,7 +19,11 @@ module.exports = class BuildTailwind extends DigigovCommand {
|
|
|
19
19
|
try {
|
|
20
20
|
await build({
|
|
21
21
|
bundleFileName: flags.bundle,
|
|
22
|
-
allFiles: flags.allFiles
|
|
22
|
+
allFiles: flags.allFiles,
|
|
23
|
+
replace: {
|
|
24
|
+
'border-color:reset': '',
|
|
25
|
+
'"borderColor":"reset"':''
|
|
26
|
+
}
|
|
23
27
|
});
|
|
24
28
|
} catch(err) {
|
|
25
29
|
console.log(err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build-tailwind",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-4e7b7994",
|
|
4
4
|
"description": "Build tailwind plugin for Digigov CLI",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"postcss-load-config": "3.1.4"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@digigov/cli": "0.
|
|
17
|
+
"@digigov/cli": "1.0.0-4e7b7994"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {}
|
|
20
|
-
}
|
|
20
|
+
}
|