@atlaskit/tokens 0.11.0 → 0.11.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,11 @@
1
1
  # @atlaskit/tokens
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`9307ebb86d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9307ebb86d8) - Revert addition of init entry point in favor of an upcoming solution.
8
+
3
9
  ## 0.11.0
4
10
 
5
11
  ### Minor Changes
@@ -14,7 +14,7 @@ var _tokenNames = _interopRequireDefault(require("./artifacts/token-names"));
14
14
  var _constants = require("./constants");
15
15
 
16
16
  var name = "@atlaskit/tokens";
17
- var version = "0.11.0";
17
+ var version = "0.11.1";
18
18
 
19
19
  /**
20
20
  * Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tokens",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "sideEffects": [
5
5
  "**/*.css"
6
6
  ]
@@ -2,7 +2,7 @@ import warnOnce from '@atlaskit/ds-lib/warn-once';
2
2
  import tokens from './artifacts/token-names';
3
3
  import { TOKEN_NOT_FOUND_CSS_VAR } from './constants';
4
4
  const name = "@atlaskit/tokens";
5
- const version = "0.11.0";
5
+ const version = "0.11.1";
6
6
 
7
7
  /**
8
8
  * Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tokens",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "sideEffects": [
5
5
  "**/*.css"
6
6
  ]
@@ -2,7 +2,7 @@ import warnOnce from '@atlaskit/ds-lib/warn-once';
2
2
  import tokens from './artifacts/token-names';
3
3
  import { TOKEN_NOT_FOUND_CSS_VAR } from './constants';
4
4
  var name = "@atlaskit/tokens";
5
- var version = "0.11.0";
5
+ var version = "0.11.1";
6
6
 
7
7
  /**
8
8
  * Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tokens",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "sideEffects": [
5
5
  "**/*.css"
6
6
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tokens",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "author": "Atlassian Pty Ltd",
5
5
  "description": "Design tokens are the single source of truth to name and store design decisions.",
6
6
  "license": "Apache-2.0",
@@ -41,7 +41,6 @@
41
41
  "./spacing-raw": "./src/entry-points/spacing-raw.tsx",
42
42
  "./rename-mapping": "./src/entry-points/rename-mapping.tsx",
43
43
  "./babel-plugin": "./src/entry-points/babel-plugin.tsx",
44
- "./init": "./src/entry-points/init.tsx",
45
44
  "./css/atlassian-light.css": "./css/atlassian-light.css",
46
45
  "./css/atlassian-dark.css": "./css/atlassian-dark.css",
47
46
  "./css/atlassian-legacy-light.css": "./css/atlassian-legacy-light.css",
@@ -1,9 +0,0 @@
1
- "use strict";
2
-
3
- require("../../css/atlassian-light.css");
4
-
5
- require("../../css/atlassian-dark.css");
6
-
7
- require("../../css/atlassian-spacing.css");
8
-
9
- require("../../css/atlassian-typography.css");
@@ -1,4 +0,0 @@
1
- import '../../css/atlassian-light.css';
2
- import '../../css/atlassian-dark.css';
3
- import '../../css/atlassian-spacing.css';
4
- import '../../css/atlassian-typography.css';
@@ -1,4 +0,0 @@
1
- import '../../css/atlassian-light.css';
2
- import '../../css/atlassian-dark.css';
3
- import '../../css/atlassian-spacing.css';
4
- import '../../css/atlassian-typography.css';
@@ -1,4 +0,0 @@
1
- import '../../css/atlassian-light.css';
2
- import '../../css/atlassian-dark.css';
3
- import '../../css/atlassian-spacing.css';
4
- import '../../css/atlassian-typography.css';
package/init/package.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "name": "@atlaskit/tokens/init",
3
- "main": "../dist/cjs/entry-points/init.js",
4
- "module": "../dist/esm/entry-points/init.js",
5
- "module:es2019": "../dist/es2019/entry-points/init.js",
6
- "sideEffects": [
7
- "**/*.css"
8
- ],
9
- "types": "../dist/types/entry-points/init.d.ts",
10
- "typesVersions": {
11
- ">=4.0 <4.5": {
12
- "*": [
13
- "../dist/types-ts4.0/entry-points/init.d.ts"
14
- ]
15
- }
16
- }
17
- }