@dialpad/dialtone-tokens 1.23.5 → 1.23.6-alpha.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/dist/android/java/tokens-dark.kt +1 -1
- package/dist/android/java/tokens-light.kt +1 -1
- package/dist/android/res/values/colors-dark.xml +1 -1
- package/dist/android/res/values/colors-light.xml +1 -1
- package/dist/android/res/values/dimens.xml +1 -1
- package/dist/css/variables-dark.css +1 -1
- package/dist/css/variables-light.css +1 -1
- package/dist/ios/tokens-dark.swift +1 -1
- package/dist/ios/tokens-light.swift +1 -1
- package/dist/less/variables-dark.less +1 -1
- package/dist/less/variables-light.less +1 -1
- package/package.json +28 -6
package/package.json
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-tokens",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.6-alpha.1",
|
|
4
4
|
"description": "Design tokens for Dialtone.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
13
|
-
"author": "Dialpad",
|
|
14
10
|
"license": "MIT",
|
|
15
11
|
"bugs": {
|
|
16
12
|
"url": "https://github.com/dialpad/dialtone-tokens/issues"
|
|
@@ -28,12 +24,38 @@
|
|
|
28
24
|
"tsx": "^4.7.0",
|
|
29
25
|
"typescript": "^5.1.6"
|
|
30
26
|
},
|
|
27
|
+
"contributors": [
|
|
28
|
+
{
|
|
29
|
+
"name": "Brad Paugh",
|
|
30
|
+
"email": "brad.paugh@dialpad.com",
|
|
31
|
+
"url": "https://github.com/braddialpad"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Francis Rupert",
|
|
35
|
+
"email": "francis.rupert@dialpad.com",
|
|
36
|
+
"url": "https://github.com/francisrupert"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Julio Ortega",
|
|
40
|
+
"email": "julio.ortega@dialpad.com",
|
|
41
|
+
"url": "https://github.com/juliodialpad"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Ignacio Ropolo",
|
|
45
|
+
"email": "ignacio.ropolo@dialpad.com",
|
|
46
|
+
"url": "https://github.com/iropolo"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "Nina Repetto",
|
|
50
|
+
"email": "nina.repetto@dialpad.com",
|
|
51
|
+
"url": "https://github.com/ninamarina"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
31
54
|
"scripts": {
|
|
32
55
|
"build": "pnpm run build:token-transformer && node ./build.js",
|
|
33
56
|
"build:token-transformer": "pnpm run build:token-transformer:light && pnpm run build:token-transformer:dark",
|
|
34
57
|
"build:token-transformer:light": "token-transformer tokens token_transformer/tokens-light.json root,base/default,semantic/dp/default,components/checkbox,components/avatar/default,components/badge/default,components/checkbox/default,components/icon/default,components/radio/default root --expandTypography=true --expandShadow=true",
|
|
35
58
|
"build:token-transformer:dark": "token-transformer tokens token_transformer/tokens-dark.json root,base/default,base/dark,semantic/dp/default,semantic/dp/dark,components/avatar/default,components/badge/default,components/checkbox/default,components/checkbox/dark,components/icon/default,components/radio/default,components/radio/dark root --expandTypography=true --expandShadow=true",
|
|
36
|
-
"release": "semantic-release --no-ci --extends ./release-local.config.cjs",
|
|
37
59
|
"publish:external-packages": "pnpm run publish:android-package && pnpm run publish:ios-package",
|
|
38
60
|
"publish:android-package": "cp ./AndroidManifest.xml dist/android && ./gradlew publishToMavenLocal -Pversion=$npm_package_version",
|
|
39
61
|
"publish:ios-package": "./build-ios.js",
|