@atlaskit/tokens 1.54.0 → 1.54.1

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/tokens
2
2
 
3
+ ## 1.54.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#120049](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120049)
8
+ [`77504ff274f72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77504ff274f72) -
9
+ DSP-19576: Assign names to anonymous default exports
10
+
3
11
  ## 1.54.0
4
12
 
5
13
  ### Minor Changes
@@ -2,10 +2,12 @@ import cssToDesignTokens from './css-to-design-tokens/transform';
2
2
  import removeFallbacksColor from './remove-fallbacks-color/transform';
3
3
  import themeToDesignTokens from './theme-to-design-tokens/transform';
4
4
 
5
- export default {
5
+ const config = {
6
6
  presets: {
7
7
  'theme-to-design-tokens': themeToDesignTokens,
8
8
  'css-to-design-tokens': cssToDesignTokens,
9
9
  'remove-fallbacks-color': removeFallbacksColor,
10
10
  },
11
11
  };
12
+
13
+ export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tokens",
3
- "version": "1.54.0",
3
+ "version": "1.54.1",
4
4
  "description": "Design tokens are the single source of truth to name and store design decisions.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"