forked from pacocoursey/cmdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert to pnpm workspace (pacocoursey#18)
* convert to pnpm workspace * update website build script to build cmdk first * oops fix typo * remove readme simlink, just copy it before publishing
- Loading branch information
1 parent
61168ee
commit a46b392
Showing
11 changed files
with
222 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "cmdk", | ||
"version": "0.1.16", | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"prepublishOnly": "cp ../README.md . && pnpm build", | ||
"postpublish": "rm README.md", | ||
"build": "tsup src", | ||
"dev": "tsup src --watch" | ||
}, | ||
"peerDependencies": { | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0" | ||
}, | ||
"dependencies": { | ||
"@radix-ui/react-dialog": "0.1.7", | ||
"command-score": "0.1.2" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "18.0.15" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,16 @@ | ||
{ | ||
"name": "cmdk", | ||
"version": "0.1.16", | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"name": "cmdk-root", | ||
"private": true, | ||
"scripts": { | ||
"prepublishOnly": "pnpm build", | ||
"build": "tsup src", | ||
"dev": "tsup src --watch", | ||
"build": "pnpm -F cmdk build", | ||
"website": "pnpm -F cmdk-website dev", | ||
"testsite": "pnpm -F cmdk-tests dev", | ||
"test": "playwright test" | ||
}, | ||
"peerDependencies": { | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0" | ||
}, | ||
"dependencies": { | ||
"@radix-ui/react-dialog": "0.1.7", | ||
"command-score": "0.1.2" | ||
}, | ||
"devDependencies": { | ||
"@playwright/test": "1.24.1", | ||
"tsup": "6.2.1" | ||
} | ||
"tsup": "5.12.1", | ||
"typescript": "4.6.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.