chore: Migrated addons/highlight to tsup

This commit is contained in:
Bryan Thomas 2022-10-13 21:02:54 -05:00
parent 349b2e5f45
commit ea7af0d0c6
2 changed files with 23 additions and 5 deletions

View File

@ -23,9 +23,22 @@
},
"license": "MIT",
"author": "winkerVSbecks",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./preview": {
"require": "./dist/preview.js",
"import": "./dist/preview.mjs",
"types": "./dist/preview.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
@ -34,7 +47,7 @@
],
"scripts": {
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "node ../../../scripts/prepare.js"
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/addons": "7.0.0-alpha.37",
@ -45,6 +58,11 @@
"@types/webpack-env": "^1.16.0",
"typescript": "~4.6.3"
},
"bundler": {
"entries": [
"./src/index.ts"
]
},
"publishConfig": {
"access": "public"
},

View File

@ -1 +1 @@
export * from './dist/esm/highlight';
export * from './dist/highlight';