@procore/hammer-lib-tsup 0.8.0 → 0.9.0
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 +16 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @procore/hammer-lib-tsup
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 53a92fe: Upgrades dependencies.
|
|
8
|
+
- a07d0ff: Updates the node engines version ranges to support current, active, and maintenance versions of Node.
|
|
9
|
+
- e0b46f0: Extend `HammerConfig` interface for typed configuration.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [53a92fe]
|
|
14
|
+
- Updated dependencies [3843fbe]
|
|
15
|
+
- Updated dependencies [a07d0ff]
|
|
16
|
+
- @procore/hammer-utils@0.4.0
|
|
17
|
+
- @procore/hammer-types@0.7.0
|
|
18
|
+
|
|
3
19
|
## 0.8.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import * as _procore_hammer_types from '@procore/hammer-types';
|
|
2
|
+
import { Options } from 'tsup';
|
|
3
|
+
|
|
4
|
+
type OverrideConfig = (config: Options[]) => Options[];
|
|
5
|
+
declare module '@procore/hammer-types' {
|
|
6
|
+
interface HammerConfig {
|
|
7
|
+
libTsup?: OverrideConfig;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
2
10
|
|
|
3
11
|
declare const init: (rootDir: string, config: _procore_hammer_types.HammerConfig, options: {
|
|
4
12
|
force?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import * as _procore_hammer_types from '@procore/hammer-types';
|
|
2
|
+
import { Options } from 'tsup';
|
|
3
|
+
|
|
4
|
+
type OverrideConfig = (config: Options[]) => Options[];
|
|
5
|
+
declare module '@procore/hammer-types' {
|
|
6
|
+
interface HammerConfig {
|
|
7
|
+
libTsup?: OverrideConfig;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
2
10
|
|
|
3
11
|
declare const init: (rootDir: string, config: _procore_hammer_types.HammerConfig, options: {
|
|
4
12
|
force?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/hammer-lib-tsup",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": "^
|
|
30
|
+
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsup",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@procore/hammer-types": "^0.
|
|
55
|
-
"@procore/hammer-utils": "^0.
|
|
54
|
+
"@procore/hammer-types": "^0.7.0",
|
|
55
|
+
"@procore/hammer-utils": "^0.4.0",
|
|
56
56
|
"cli-highlight": "^2.1.11",
|
|
57
|
-
"esbuild": "^0.25.
|
|
57
|
+
"esbuild": "^0.25.6",
|
|
58
58
|
"esbuild-sass-plugin": "^3.3.1",
|
|
59
59
|
"pathe": "^2.0.3",
|
|
60
60
|
"picocolors": "^1.1.1",
|
|
@@ -63,15 +63,15 @@
|
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@procore/eslint-config": "^15.2.1",
|
|
66
|
-
"@procore/hammer-test-utils": "^0.
|
|
66
|
+
"@procore/hammer-test-utils": "^0.3.0",
|
|
67
67
|
"@procore/prettier-config": "^1.1.1",
|
|
68
68
|
"@procore/typescript-config": "^2.0.0",
|
|
69
|
-
"@types/node": "^20.19.
|
|
69
|
+
"@types/node": "^20.19.6",
|
|
70
70
|
"@vitest/coverage-v8": "^3.2.4",
|
|
71
71
|
"del-cli": "^6.0.0",
|
|
72
|
-
"eslint": "^9.
|
|
72
|
+
"eslint": "^9.31.0",
|
|
73
73
|
"postcss": "^8.5.6",
|
|
74
|
-
"prettier": "^3.6.
|
|
74
|
+
"prettier": "^3.6.2",
|
|
75
75
|
"strip-ansi": "^7.1.0",
|
|
76
76
|
"typescript": "~5.5.4",
|
|
77
77
|
"vitest": "^3.2.4"
|