@commercetools-uikit/design-system 12.2.4 → 12.2.5

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.
@@ -163,8 +163,8 @@ var designTokens = {
163
163
  shadowBoxTagWhenHovered: 'shadow1'
164
164
  };
165
165
 
166
- // NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
167
- var version = '12.2.4';
166
+ // NOTE: This string will be replaced on build time with the package version.
167
+ var version = "12.2.5";
168
168
 
169
169
  exports.customProperties = customProperties;
170
170
  exports.designTokens = designTokens;
@@ -163,8 +163,8 @@ var designTokens = {
163
163
  shadowBoxTagWhenHovered: 'shadow1'
164
164
  };
165
165
 
166
- // NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
167
- var version = '12.2.4';
166
+ // NOTE: This string will be replaced on build time with the package version.
167
+ var version = "12.2.5";
168
168
 
169
169
  exports.customProperties = customProperties;
170
170
  exports.designTokens = designTokens;
@@ -159,7 +159,7 @@ var designTokens = {
159
159
  shadowBoxTagWhenHovered: 'shadow1'
160
160
  };
161
161
 
162
- // NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
163
- var version = '12.2.4';
162
+ // NOTE: This string will be replaced on build time with the package version.
163
+ var version = "12.2.5";
164
164
 
165
165
  export { customProperties, designTokens, version };
@@ -1,2 +1,2 @@
1
- declare const _default: "12.2.4";
1
+ declare const _default: "__@UI_KIT_PACKAGE/VERSION_OF_RELEASE__";
2
2
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-uikit/design-system",
3
3
  "description": "Core package of the commercetools design system.",
4
- "version": "12.2.4",
4
+ "version": "12.2.5",
5
5
  "bugs": "https://github.com/commercetools/ui-kit/issues",
6
6
  "repository": {
7
7
  "type": "git",
@@ -9,23 +9,29 @@
9
9
  "directory": "design-system"
10
10
  },
11
11
  "homepage": "https://uikit.commercetools.com",
12
- "keywords": ["javascript", "design system", "react", "uikit"],
12
+ "keywords": [
13
+ "javascript",
14
+ "design system",
15
+ "react",
16
+ "uikit"
17
+ ],
13
18
  "license": "MIT",
14
- "private": false,
15
19
  "publishConfig": {
16
20
  "access": "public"
17
21
  },
18
22
  "sideEffects": false,
19
23
  "main": "dist/commercetools-uikit-design-system.cjs.js",
20
24
  "module": "dist/commercetools-uikit-design-system.esm.js",
21
- "files": ["dist", "materials"],
25
+ "files": [
26
+ "dist",
27
+ "materials"
28
+ ],
22
29
  "scripts": {
23
- "prepare": "../scripts/version.js replace",
24
30
  "build:tokens": "node ./scripts/generate-custom-properties.js",
25
31
  "build:tokens:watch": "nodemon -e yaml --quiet --watch materials/internals --exec 'yarn build:tokens'"
26
32
  },
27
33
  "dependencies": {
28
- "@babel/runtime": "7.15.4",
29
- "@babel/runtime-corejs3": "7.15.4"
34
+ "@babel/runtime": "7.16.3",
35
+ "@babel/runtime-corejs3": "7.16.3"
30
36
  }
31
37
  }