-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependencies chaos fix; Add @babel/plugin-proposal-class-properties #247
Open
welcomemax
wants to merge
8
commits into
SortableJS:master
Choose a base branch
from
welcomemax:deps-fix
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+28,204
−54
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d939f18
fix: remove static class prop
welcomemax 5078001
fix: fix typescript version; react 18; add plugin-proposal-class-prop…
welcomemax 6b06e6f
fix(cherry-pick changes): cherry-pick changes
welcomemax f1758b2
fix(cherry-pick changes): cherry-pick changes
welcomemax c229300
Merge branch 'master' into deps-fix
welcomemax e0d8ef9
fix(cherry-pick object-assign fix): cherry-pick object-assign fix
welcomemax 92c090c
style: prettier fix (tsx include)
welcomemax 46885cf
style: apply correct ver
welcomemax File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"plugins": ["@babel/plugin-proposal-class-properties"] | ||
} |
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,11 +1,9 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
.idea | ||
.vscode | ||
.parcel-cache | ||
node_modules | ||
temp | ||
dist | ||
# todo - get story book only when releasing. | ||
storybook-static | ||
yarn.lock | ||
package-lock.json | ||
.parcel-cache | ||
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 +5,6 @@ | |
"name": "Wayne Van Son", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SortableJS/react-sortablejs.git" | ||
}, | ||
"license": "MIT", | ||
"private": false, | ||
"files": [ | ||
|
@@ -25,51 +21,53 @@ | |
"serve:parcel": "parcel watch ./src/index.ts", | ||
"format": "npm-run-all format:*", | ||
"format:eslint": "yarn lint --fix", | ||
"format:prettier": "prettier --write \"src/**.{js,ts}\"", | ||
"lint": "eslint \"src/**.{js,ts}\"", | ||
"format:prettier": "prettier --write \"src/**.{ts,tsx}\"", | ||
"lint": "eslint \"src/**.{ts,tsx}\"", | ||
"phoenix": "rm -rf ./node_modules && rm -f yarn.lock && yarn install --prefer-online" | ||
}, | ||
"peerDependencies": { | ||
"@types/sortablejs": "1", | ||
"@types/sortablejs": "^1.10.0", | ||
"react": ">=16.9.0", | ||
"react-dom": ">=16.9.0", | ||
"sortablejs": "1" | ||
"sortablejs": "^1.10.0" | ||
}, | ||
"dependencies": { | ||
"classnames": "2.3.1", | ||
"tiny-invariant": "1.2.0" | ||
"classnames": "^2.2.6", | ||
"tiny-invariant": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "11", | ||
"@commitlint/config-conventional": "11", | ||
"@parcel/packager-ts": "2.6.0", | ||
"@parcel/transformer-typescript-types": "2.6.0", | ||
"@semantic-release/changelog": "5", | ||
"@semantic-release/git": "9", | ||
"@babel/plugin-proposal-class-properties": "^7.18.6", | ||
"@commitlint/cli": "^11.0.0", | ||
"@commitlint/config-conventional": "^11.0.0", | ||
"@parcel/packager-ts": "^2.7.0", | ||
"@parcel/transformer-typescript-types": "^2.7.0", | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"@types/classnames": "^2.2.10", | ||
"@types/jest": "^26.0.14", | ||
"@types/node": "14.11.2", | ||
"@types/react": ">=16.9.0", | ||
"@types/react-dom": ">=16.9.0", | ||
"@types/sortablejs": "1", | ||
"@typescript-eslint/eslint-plugin": "4.33", | ||
"@typescript-eslint/parser": "4.33", | ||
"commitizen": "4", | ||
"cz-conventional-changelog": "3", | ||
"eslint": "7", | ||
"eslint-plugin-react": "7", | ||
"husky": "4.3", | ||
"jest": "26", | ||
"lint-staged": "10", | ||
"npm-run-all": "4", | ||
"parcel": "2", | ||
"prettier": "2.5", | ||
"react": ">=16.9.0", | ||
"react-dom": ">=16.9.0", | ||
"semantic-release": "17", | ||
"sortablejs": "1", | ||
"ts-jest": "26", | ||
"ts-node": "9", | ||
"typescript": "4" | ||
"@types/react": "16.9.49", | ||
"@types/react-dom": "16.9.8", | ||
"@types/sortablejs": "^1.10.0", | ||
"@typescript-eslint/eslint-plugin": "^4.2.0", | ||
"@typescript-eslint/parser": "^4.2.0", | ||
"commitizen": "^4.2.1", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^7.10.0", | ||
"eslint-plugin-react": "^7.21.2", | ||
"husky": "^4.3.0", | ||
"jest": "^26.4.2", | ||
"lint-staged": "^10.4.0", | ||
"npm-run-all": "^4.1.5", | ||
"parcel": "^2.7.0", | ||
"prettier": "^2.1.2", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"semantic-release": "^17.1.2", | ||
"sortablejs": "^1.10.0", | ||
"ts-jest": "^26.4.0", | ||
"ts-node": "^9.0.0", | ||
"typescript": "~4.7" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why move it down here?