@procore/hammer-lib-tsup 1.0.1 → 1.0.2
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.md +6 -0
- package/package.json +7 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @procore/hammer-lib-tsup
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cd54653: Move `postcss` to dependencies and add `postcss-modules` as a dependency. This addresses an issue where consumers were required to install these two dependencies in order to use this plugin.
|
|
8
|
+
|
|
3
9
|
## 1.0.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/hammer-lib-tsup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Hammer library builder, tsup-style",
|
|
5
5
|
"author": "Procore Technologies, Inc",
|
|
6
6
|
"homepage": "https://github.com/procore/hammer/packages/lib-tsup",
|
|
@@ -42,22 +42,16 @@
|
|
|
42
42
|
"test:ci": "vitest run --coverage",
|
|
43
43
|
"test:watch": "vitest"
|
|
44
44
|
},
|
|
45
|
-
"peerDependencies": {
|
|
46
|
-
"postcss": "^8.0.0"
|
|
47
|
-
},
|
|
48
|
-
"peerDependenciesMeta": {
|
|
49
|
-
"postcss": {
|
|
50
|
-
"optional": true
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
45
|
"dependencies": {
|
|
54
46
|
"@procore/hammer-types": "^1.2.0",
|
|
55
|
-
"@procore/hammer-utils": "^1.0.
|
|
47
|
+
"@procore/hammer-utils": "^1.0.2",
|
|
56
48
|
"cli-highlight": "^2.1.11",
|
|
57
49
|
"esbuild": "^0.27.4",
|
|
58
50
|
"esbuild-sass-plugin": "^3.7.0",
|
|
59
51
|
"pathe": "^2.0.3",
|
|
60
52
|
"picocolors": "^1.1.1",
|
|
53
|
+
"postcss": "^8.5.8",
|
|
54
|
+
"postcss-modules": "^6.0.1",
|
|
61
55
|
"sass-embedded": "^1.98.0",
|
|
62
56
|
"tsup": "^8.5.1"
|
|
63
57
|
},
|
|
@@ -67,13 +61,12 @@
|
|
|
67
61
|
"@procore/prettier-config": "^1.1.1",
|
|
68
62
|
"@procore/typescript-config": "^2.1.0",
|
|
69
63
|
"@types/node": "^20.19.37",
|
|
70
|
-
"@vitest/coverage-v8": "^4.1.
|
|
64
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
71
65
|
"del-cli": "^7.0.0",
|
|
72
66
|
"eslint": "^9.39.4",
|
|
73
|
-
"
|
|
74
|
-
"prettier": "^3.8.1",
|
|
67
|
+
"prettier": "^3.8.3",
|
|
75
68
|
"strip-ansi": "^7.2.0",
|
|
76
69
|
"typescript": "~5.5.4",
|
|
77
|
-
"vitest": "^4.1.
|
|
70
|
+
"vitest": "^4.1.7"
|
|
78
71
|
}
|
|
79
72
|
}
|