Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
Use parcel
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Nov 15, 2023
1 parent 468b62d commit 6c7daf1
Show file tree
Hide file tree
Showing 3 changed files with 1,850 additions and 92 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ lib
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.parcel-cache/
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
"src",
"README.md"
],
"main": "./dist/index.umd.cjs",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"source": "./src/index.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
"require": "./dist/index.cjs"
},
"./src/*": "./src/*"
},
Expand All @@ -47,7 +47,7 @@
],
"scripts": {
"develop": "npx -p mrs-developer missdev --output=lib --fetch-https",
"build": "vite build",
"build": "parcel build",
"test": "vitest --no-threads --passWithNoTests",
"coverage": "vitest run --coverage --no-threads",
"lint": "yarn eslint && yarn prettier && yarn stylelint",
Expand All @@ -69,6 +69,8 @@
"access": "public"
},
"devDependencies": {
"@parcel/packager-ts": "2.10.3",
"@parcel/transformer-typescript-types": "2.10.3",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
Expand All @@ -94,6 +96,7 @@
"history": "^5.3.0",
"jest-axe": "^8.0.0",
"jsdom": "^22.1.0",
"parcel": "^2.10.3",
"postcss-scss": "4.0.9",
"prettier": "3.0.3",
"release-it": "16.2.1",
Expand All @@ -111,8 +114,11 @@
"vitest-axe": "^0.1.0"
},
"dependencies": {
"@react-aria/utils": "^3.22.0",
"@react-spectrum/utils": "^3.11.1",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-aria-components": "^1.0.0-rc.0",
"react-dom": "18.2.0"
Expand Down

0 comments on commit 6c7daf1

Please sign in to comment.