@procore/hammer-lib-tsup 0.5.1 → 0.5.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 +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +15 -13
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -96,7 +96,7 @@ function toHighlightedString(input) {
|
|
|
96
96
|
const inputAsString = JSON.stringify(
|
|
97
97
|
input,
|
|
98
98
|
function(_key, value) {
|
|
99
|
-
return typeof value === "function" ? value.
|
|
99
|
+
return typeof value === "function" ? value.name : value;
|
|
100
100
|
},
|
|
101
101
|
2
|
|
102
102
|
);
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/hammer-lib-tsup",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.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",
|
|
@@ -51,26 +51,28 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@procore/hammer-types": "^0.
|
|
54
|
+
"@procore/hammer-types": "^0.4.0",
|
|
55
55
|
"cli-highlight": "^2.1.11",
|
|
56
|
-
"esbuild
|
|
56
|
+
"esbuild": "^0.21.5",
|
|
57
|
+
"esbuild-sass-plugin": "^3.3.1",
|
|
57
58
|
"pathe": "^1.1.2",
|
|
58
59
|
"picocolors": "^1.0.1",
|
|
59
|
-
"
|
|
60
|
-
"tsup": "^8.0
|
|
60
|
+
"sass-embedded": "^1.77.5",
|
|
61
|
+
"tsup": "^8.1.0"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@procore/eslint-config": "^15.2.
|
|
64
|
-
"@procore/prettier-config": "^1.1.
|
|
65
|
-
"@
|
|
64
|
+
"@procore/eslint-config": "^15.2.1",
|
|
65
|
+
"@procore/prettier-config": "^1.1.1",
|
|
66
|
+
"@procore/typescript-config": "^2.0.0",
|
|
67
|
+
"@types/node": "^20.14.10",
|
|
66
68
|
"@vitest/coverage-v8": "^1.6.0",
|
|
67
69
|
"eslint": "^8.57.0",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"prettier": "^3.2
|
|
71
|
-
"rimraf": "^
|
|
70
|
+
"lint-staged": "^15.2.7",
|
|
71
|
+
"postcss": "^8.4.39",
|
|
72
|
+
"prettier": "^3.3.2",
|
|
73
|
+
"rimraf": "^6.0.0",
|
|
72
74
|
"strip-ansi": "^7.1.0",
|
|
73
|
-
"typescript": "^5.
|
|
75
|
+
"typescript": "^5.5.3",
|
|
74
76
|
"vitest": "^1.6.0",
|
|
75
77
|
"vitest-mock-process": "^1.0.4"
|
|
76
78
|
}
|