@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @servicetitan/hammer-token@2.5.1 build /home/runner/work/hammer/hammer/packages/hammer-token
2
+ > @servicetitan/hammer-token@2.5.2 build /home/runner/work/hammer/hammer/packages/hammer-token
3
3
  > node ./config.js
4
4
 
5
5
 
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
@@ -1,3 +1,2 @@
1
1
  import * as core from './core';
2
- export * as Token from '../../type/types';
3
2
  export { core };
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!`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servicetitan/hammer-token",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "",
5
5
  "main": "build/web/index.js",
6
6
  "types": "build/web/index.d.ts",