@ni/nimble-tokens 1.0.0-beta.29 → 1.0.0-beta.32
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/README.md
CHANGED
|
@@ -12,10 +12,10 @@ NI design tokens to use across NI applications. Design tokens are primitive elem
|
|
|
12
12
|
|
|
13
13
|
If you are using one of the following frameworks you should consume tokens via components implemented in the following libraries:
|
|
14
14
|
|
|
15
|
-
1. Angular: See the [nimble-angular](
|
|
16
|
-
2. Blazor WebAssembly or Blazor Server: See the [nimble-blazor](
|
|
17
|
-
3. Vanilla / Frameworkless: See the [nimble-components](
|
|
15
|
+
1. Angular: See the [nimble-angular](/angular-workspace/projects/ni/nimble-angular) documentation.
|
|
16
|
+
2. Blazor WebAssembly or Blazor Server: See the [nimble-blazor](/packages/nimble-blazor) documentation.
|
|
17
|
+
3. Vanilla / Frameworkless: See the [nimble-components](/packages/nimble-components) documentation.
|
|
18
18
|
|
|
19
19
|
## Contributing
|
|
20
20
|
|
|
21
|
-
Follow the instructions in [CONTRIBUTING.md](CONTRIBUTING.md) to modify this library.
|
|
21
|
+
Follow the instructions in [CONTRIBUTING.md](/packages/nimble-tokens/CONTRIBUTING.md) to modify this library.
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-tokens",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.32",
|
|
4
4
|
"description": "Design tokens for the NI Nimble Design System",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run build:svg-to-ts && npm run build:ts",
|
|
7
7
|
"build:svg-to-ts": "svg-to-ts --config source/build/svg-to-ts-config.js",
|
|
8
8
|
"build:ts": "tsc -p ./tsconfig.json",
|
|
9
9
|
"build:ts:watch": "tsc -p ./tsconfig.json -w",
|
|
10
|
+
"pack": "npm pack",
|
|
11
|
+
"pack:nuget": "cross-env-shell dotnet pack ./source/NimbleTokens --configuration Release -p:PackageVersion=$npm_package_version",
|
|
12
|
+
"publish": "npm publish",
|
|
10
13
|
"lint": "eslint ."
|
|
11
14
|
},
|
|
12
15
|
"repository": {
|
|
@@ -23,7 +26,9 @@
|
|
|
23
26
|
"homepage": "https://github.com/ni/nimble#readme",
|
|
24
27
|
"devDependencies": {
|
|
25
28
|
"@ni/eslint-config-javascript": "^3.0.0",
|
|
26
|
-
"
|
|
29
|
+
"cross-env": "^7.0.3",
|
|
30
|
+
"hex-rgb": "^4.0.0",
|
|
31
|
+
"style-dictionary": "^3.0.3",
|
|
27
32
|
"svg-to-ts": "^6.0.1",
|
|
28
33
|
"typescript": "^4.3.2"
|
|
29
34
|
},
|