@channel.io/bezier-tokens 0.3.2 → 0.3.3-beta.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lightTheme.d.mts","sourceRoot":"","sources":["../../../beta/esm/lightTheme.mjs"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@channel.io/bezier-tokens",
3
- "version": "0.3.2",
3
+ "version": "0.3.3-beta.2",
4
4
  "description": "Design tokens for Bezier design system.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,15 +33,31 @@
33
33
  },
34
34
  "sass": "./dist/alpha/scss/index.scss"
35
35
  },
36
+ "./beta": {
37
+ "require": {
38
+ "types": "./dist/types/beta/cjs/index.d.ts",
39
+ "default": "./dist/beta/cjs/index.js"
40
+ },
41
+ "import": {
42
+ "types": "./dist/types/beta/esm/index.d.mts",
43
+ "default": "./dist/beta/esm/index.mjs"
44
+ },
45
+ "sass": "./dist/beta/scss/index.scss"
46
+ },
36
47
  "./css/*": "./dist/css/*",
37
48
  "./scss/*": "./dist/scss/*",
38
49
  "./alpha/css/*": "./dist/alpha/css/*",
39
- "./alpha/scss/*": "./dist/alpha/scss/*"
50
+ "./alpha/scss/*": "./dist/alpha/scss/*",
51
+ "./beta/css/*": "./dist/beta/css/*",
52
+ "./beta/scss/*": "./dist/beta/scss/*"
40
53
  },
41
54
  "typesVersions": {
42
55
  "*": {
43
56
  "alpha": [
44
57
  "./dist/types/alpha/cjs/index.d.ts"
58
+ ],
59
+ "beta": [
60
+ "./dist/types/beta/cjs/index.d.ts"
45
61
  ]
46
62
  }
47
63
  },
@@ -53,9 +69,10 @@
53
69
  "dist"
54
70
  ],
55
71
  "scripts": {
56
- "build": "run-s clean:build build:tokens build:types",
72
+ "build": "run-s clean:build validate:tokens build:tokens build:types",
57
73
  "build:tokens": "ts-node scripts/build-tokens.ts",
58
74
  "build:types": "tsc -p tsconfig.build.json",
75
+ "validate:tokens": "ts-node scripts/validate-token-references.ts",
59
76
  "lint": "TIMING=1 eslint --cache .",
60
77
  "typecheck": "tsc --noEmit",
61
78
  "clean": "run-s 'clean:*'",