Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Create autoconfig script for tailwindcss & Material UI #42

Merged
merged 24 commits into from
Jun 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add postinstall to exports
Shaun Lloyd committed Jun 7, 2023

Unverified

This user has not yet uploaded their public signing key.
commit c818df0e32128b8bc2b8477846d0b8951596385a
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -39,7 +39,8 @@
"import": "./dist/preset.mjs",
"types": "./dist/preset.d.ts"
},
"./package.json": "./package.json"
"./package.json": "./package.json",
"./postinstall": "./bin/postinstall.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
@@ -56,13 +57,14 @@
"build:addon": "tsup --config=\"./tsup.browser.config.js\"",
"build:config": "tsup --config=\"./tsup.node.config.js\"",
"build:watch": "yarn build:addon --watch",
"build:all": "concurrently \"yarn build:addon\" \"yarn build:config\"",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"start": "concurrently \"yarn build:watch\" \"yarn storybook -- --quiet\"",
"build-storybook": "storybook build",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "yarn build && auto shipit"
"release": "yarn build:all && auto shipit"
},
"dependencies": {
"@babel/template": "^7.20.7",