-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build script to handle bad inputs and update the contributor l…
…ist. (#215)
- Loading branch information
Showing
9 changed files
with
226 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ node_modules | |
dist | ||
.DS_Store | ||
package-lock.json | ||
.idea |
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
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"homepage": "https://github.com/P5-wrapper/react", | ||
"license": "MIT", | ||
"type": "module", | ||
"main": "dist/components/index.js", | ||
"browser": "dist/components/index.js", | ||
"module": "dist/components/index.esm.js", | ||
"types": "dist/components/index.d.ts", | ||
"files": [ | ||
|
@@ -21,7 +21,7 @@ | |
"format:check": "pnpm prettier --check .", | ||
"format": "pnpm prettier --write .", | ||
"lint:fix": "pnpm lint --fix", | ||
"lint": "eslint --config config/eslint/eslint.json src/ --ignore-path .gitignore", | ||
"lint": "eslint --config config/eslint/eslint.json . --ignore-path .gitignore", | ||
"prettier": "prettier --config config/prettier/prettier.json --ignore-path .gitignore", | ||
"release": "pnpm build && gh-pages -d dist/demo && pnpm publish", | ||
"start": "webpack serve --config config/webpack/webpack.config.js --mode development", | ||
|
@@ -45,14 +45,23 @@ | |
}, | ||
{ | ||
"name": "Andreas Wolf", | ||
"email": "[email protected]" | ||
"email": "[email protected]", | ||
"url": "https://github.com/and-who" | ||
}, | ||
{ | ||
"name": "Ivan Malyugin" | ||
}, | ||
{ | ||
"name": "Benjamin Saphier", | ||
"url": "https://github.com/bsaphier" | ||
}, | ||
{ | ||
"name": "Mark Fuller", | ||
"url": "https://github.com/MarkFuller1" | ||
}, | ||
{ | ||
"name": "Nathan Manousos", | ||
"url": "https://github.com/trafnar" | ||
} | ||
], | ||
"repository": { | ||
|
@@ -63,8 +72,6 @@ | |
"url": "https://github.com/P5-wrapper/react/issues" | ||
}, | ||
"dependencies": { | ||
"@rollup/plugin-terser": "^0.3.0", | ||
"@rollup/plugin-typescript": "^11.0.0", | ||
"microdiff": "^1.3.1", | ||
"p5": "^1.5.0" | ||
}, | ||
|
@@ -77,6 +84,9 @@ | |
"@babel/preset-env": "^7.20.2", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@rollup/plugin-replace": "^5.0.2", | ||
"@rollup/plugin-terser": "^0.3.0", | ||
"@rollup/plugin-typescript": "^11.0.0", | ||
"@testing-library/react": "^13.4.0", | ||
"@trivago/prettier-plugin-sort-imports": "^4.0.0", | ||
"@types/jest": "^29.2.3", | ||
|
@@ -85,6 +95,7 @@ | |
"@types/react-dom": "^18.0.9", | ||
"@typescript-eslint/eslint-plugin": "^5.44.0", | ||
"@typescript-eslint/parser": "^5.44.0", | ||
"@vue/compiler-sfc": "3", | ||
"babel-loader": "^9.1.0", | ||
"canvas": "^2.10.2", | ||
"css-loader": "^6.7.2", | ||
|
Oops, something went wrong.