@servicetitan/hammer-token 2.5.1 → 2.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/build/web/index.js +0 -1
- package/config.js +0 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @servicetitan/hammer-token
|
|
2
2
|
|
|
3
|
+
## 2.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2268](https://github.com/servicetitan/hammer/pull/2268) [`e085299`](https://github.com/servicetitan/hammer/commit/e085299f971a0856f2b230e89f03df0f2b0ee458) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Tokens] Drop broken runtime re-export from `build/web/index.js`. `Token` is type-only, so bundlers no longer fail resolving `../../type/types`.
|
|
8
|
+
|
|
3
9
|
## 2.5.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/build/web/index.js
CHANGED
package/config.js
CHANGED
|
@@ -497,7 +497,6 @@ mainType.write(`export { Token }\n`);
|
|
|
497
497
|
mainType.write(`export { ${themes.join(", ")} }\n`);
|
|
498
498
|
mainType.end();
|
|
499
499
|
|
|
500
|
-
mainJS.write(`export * as Token from '../../type/types';\n`);
|
|
501
500
|
mainJS.write(`export { ${themes.join(", ")} };\n`);
|
|
502
501
|
mainJS.end();
|
|
503
502
|
console.log(`Index built!`);
|