Skip to content

Commit

Permalink
fix: package.json links to the bundled files
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Oct 30, 2023
1 parent b64e62a commit b9bd3ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@axa-ch/design-tokens",
"version": "2.1.0",
"description": "AXA Design Tokens",
"main": "./index.cjs.js",
"module": "./index.js",
"types": "./index.d.ts",
"main": "./tokens.js",
"module": "./tokens.mjs",
"types": "./tokens.d.ts",
"keywords": [
"design tokens",
"css",
Expand All @@ -17,19 +17,19 @@
"build",
"tokens",
"tailwind.config.js",
"index.js",
"index.d.ts",
"index.cjs.js",
"tokens.js",
"tokens.mjs",
"tokens.d.ts",
"tokens.json",
"tokens.scss",
"tokens.css",
"tokens.min.css"
],
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs.js",
"types": "./index.d.ts"
"import": "./tokens.mjs",
"require": "./tokens.js",
"types": "./tokens.d.ts"
},
"./build/": "./build/",
"./tokens.json": "./tokens.json",
Expand Down
File renamed without changes.

0 comments on commit b9bd3ac

Please sign in to comment.