From 2e4063f98c4ec2970b6f44f174b2424b84f3a153 Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 00:44:43 +0000 Subject: [PATCH 1/9] refactor: remove code formattings config files --- .editorconfig | 15 --------------- .jshintrc | 25 ------------------------- 2 files changed, 40 deletions(-) delete mode 100644 .editorconfig delete mode 100644 .jshintrc diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 09d275186..000000000 --- a/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -# editorconfig.org -root = true - -[*] -indent_style = tab -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.md] -trim_trailing_whitespace = false - -[*.yml] -indent_style = space diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index ffbcc18f9..000000000 --- a/.jshintrc +++ /dev/null @@ -1,25 +0,0 @@ -{ - "strict": false, - "newcap": false, - "node": true, - "expr": true, - "supernew": true, - "laxbreak": true, - "esversion": 9, - "white": true, - "globals": { - "define": true, - "test": true, - "expect": true, - "module": true, - "asyncTest": true, - "start": true, - "ok": true, - "equal": true, - "notEqual": true, - "deepEqual": true, - "window": true, - "document": true, - "performance": true - } -} From 84dfb08098ef84f7656a3f5a5e247b5e1147b831 Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 12:52:04 +0000 Subject: [PATCH 2/9] docs: add more detail to contribution guidelines --- CONTRIBUTING.md | 92 +++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 77 insertions(+), 15 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7ab512bf0..0d911171e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,26 +1,88 @@ # Contribution Guidelines -### Issue +Thank you for considering to contribute. Please follow the guidelines. +If the guidelines are not followed, your issues or requests may be closed or left on hold until the requirements are fulfilled. - 1. Try [master](https://github.com/SortableJS/Sortable/tree/master/)-branch, perhaps the problem has been solved; - 2. [Use the search](https://github.com/SortableJS/Sortable/search?type=Issues&q=problem), maybe already have an answer; - 3. If not found, create example on [jsbin.com (draft)](https://jsbin.com/kamiwez/edit?html,js,output) and describe the problem. +--- + +## Manners and Etiquette 🎩 + +Please be thoughtful and considerate of others when posting any content within the sortable community. We do this for free, just like you. + +Hate speech and non constructive, negatively loaded critisism will be issued with a warnings and potential bans. --- -### Pull Request +## Issues ❗ + +### Submitting an Issueβœ…βœ… + +We have three broad categories, to which _you should pick the correct template_. Selecting the correct templates help triage issues, allowing us to resolve the issue faster. + +We have **enhancements & features**, **bug reports** and **questions**. + +> _todo: expand on these_ + +#### Enhancements & Featuresβž•βž•βž•βž• βœ…βž•βž•βž•βž•βž•βž• + +These are additions to functionality that do are not documented. + +#### Bugs + +These are related to existing functionality that are documented, but not working correctly. + +Functionality bugs without a codesandbox or a jsfiddle will be marked as low priority unless a description is made. + +#### Questions + +When you have a question about how the code works, or you've become stuck on how to do something. + +--- + +## πŸšƒπŸšƒπŸšƒPull Requests πŸšƒπŸšƒπŸ“₯🌊🌊 + +All pull requests should close an issue, unless it: + +- Fixes a typo in the documentation +- Adds some documentation + +### Workflow + +We're aware that easy use nature of the library brings in many new programmers seeking to contribute. Please read the section below for how to do it properly. + +#### Git and GitHub CLI + +Please read the [GitHub Workflow Guide](https://gist.github.com/Chaser324/ce0505fbed06b947d962) for how to handle git when making changes. This is a great guide and once you learn it here, you can take it everywhere. + +You can use the [GitHub CLI](https://github.com/cli/cli) to skip a few steps, as it would create the fork, clone it locally and add both origin and upstream branches. + +> todo: add some more detailed instructions for the beginners. + +--- + +## Run locally + +The entry points are in `packages/sortablejs`, but most of the code is in `packages/sortable`. We've made this separation in preparation for the future. + +### Bootstrap + +After creating your fork and/or cloning this repository, please bootstrap (initialize) the repository so code can be run and built. + +```sh +# install dependencies with yarn +yarn install - 1. Only request to merge with the [master](https://github.com/SortableJS/Sortable/tree/master/)-branch. - 2. Only modify source files, **do not commit the resulting build**. Build files are Sortable.js, Sortable.min.js and modular/*.js. +# Use the locally downloaded version of lerna +# to install sub package dependencies +yarn lerna bootstrap +``` -### Setup +### Build - 1. Fork the repo on [github](https://github.com) - 2. Clone locally - 3. Run `npm i` in the local repo +Run `yarn build` to build all the files. You should end up with a total of 10 files between the two folders `packages/sortablejs/(dist|modular)` -### Building +_**Note:** Please don't use the following files, as they're deprecated and kept only for backwards compatability:_ - - For development, build the `./Sortable.js` file using the command `npm run build:umd:watch` - - To build everything and minify it, run `npm run build` - - Do not commit the resulting builds in any pull request – they will be generated at release +- Sortable.js +- Sortable.min.js +- modular/\*.js. From 10e79f193dc7994abf03e839c1370c7943d34325 Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 13:15:21 +0000 Subject: [PATCH 3/9] docs: remove custom templates --- .github/ISSUE_TEMPLATE/custom-template.md | 48 ----------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom-template.md diff --git a/.github/ISSUE_TEMPLATE/custom-template.md b/.github/ISSUE_TEMPLATE/custom-template.md deleted file mode 100644 index 14e2a2239..000000000 --- a/.github/ISSUE_TEMPLATE/custom-template.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -name: Custom issue template -about: Not a feature request or a bug report. Usually questions, queries or concerns -title: "" -labels: "" -assignees: "" ---- - -**Custom** - - - -**Reproduction** -codesandbox: - - From 28dbc75846e6d2fb91a3ac7b94c4baa4173948b7 Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 13:22:45 +0000 Subject: [PATCH 4/9] docs: update bug report issue --- .github/ISSUE_TEMPLATE/bug-report.md | 69 +++++++++------------------- 1 file changed, 22 insertions(+), 47 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 53a033cfd..a35201c37 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,73 +1,48 @@ --- name: Bug report -about: Create a report to help us improve -title: "[bug] " +about: Document a bug with a working example +title: "" labels: "" assignees: "" --- - + + -If it is a bug found from using one of these, please link to the related issue. +### Scenario ---> +\ -**Describe the bug** +### Steps to Reproduce - - -**To Reproduce** -Steps to reproduce the behavior: +Summary of steps if applicable. 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error -**Expected behavior** - - - -**Information** - - +## Describe the bug -Versions - Look in your `package.json` for this information: -sortablejs = ^x.x.x -@types/sortablejs = ^x.x.x - -**Additional context** -Add any other context about the problem here. - -**Reproduction** -codesandbox: - - -Providing a codesandbox really helps us understand your issue. -Bugs with codesandboxes attached are likely to be resolved more quickly than others. +## Expected behavior -Once you've created a public codesandbox, please paste a link in here + -Here are some templates to get you started. +## Version -- Javascript: https://codesandbox.io/s/sortablejs-javascript-jy3tl?file=/src/index.js -- Typescript: https://codesandbox.io/s/sortablejs-typescript-6it9n?file=/src/index.ts +| package | version | +| :------------------ | :------------------ | +| `sortablejs` | `^x.x.x-?` | +| `@types/sortablejs` | `^x.x.x-?` \|\| N/A | ---> +## Additional Context From a6b18bf86f5a5a296350e1903a540c6b8bae04de Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 13:23:17 +0000 Subject: [PATCH 5/9] docs: add discussion template --- .github/ISSUE_TEMPLATE/discussion.md | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/discussion.md diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md new file mode 100644 index 000000000..6dfe95723 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.md @@ -0,0 +1,39 @@ +--- +name: Question/Feedback +about: Ask the community a question or give us some feedback! +title: "" +labels: "" +assignees: "" +--- + +Please answer the following: + +- What result are you trying to achieve and why? +- Where are you getting stuck at? + +## Reproduction + +### Scenario + + + + + + +\ + +### Steps to Reproduce + +Summary of steps if applicable. + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. Looks good + +## Version + +| package | version | +| :------------------ | :------------------ | +| `sortablejs` | `^x.x.x-?` | +| `@types/sortablejs` | `^x.x.x-?` \|\| N/A | From 32f64d6e779ae43546e7059d6ed1bff485c7c06d Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Tue, 15 Sep 2020 13:23:30 +0000 Subject: [PATCH 6/9] docs: update featue template --- .github/ISSUE_TEMPLATE/feature-request.md | 36 +++++------------------ 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index a0bbb57d0..88c190fb7 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -6,36 +6,16 @@ labels: "" assignees: "" --- - - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. +## Additional Context From 02336b194407e847f3b0e29455b519fc14f8ab92 Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Sat, 19 Sep 2020 00:35:46 +0000 Subject: [PATCH 7/9] fix(build): build dist/sortablejs, was missing prior --- packages/sortablejs/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sortablejs/package.json b/packages/sortablejs/package.json index e67ab9373..ed86986b0 100644 --- a/packages/sortablejs/package.json +++ b/packages/sortablejs/package.json @@ -7,6 +7,7 @@ "module": "dist/sortable.module.js", "scripts": { "build": "npm-run-all --parallel build:*", + "build:main": "microbundle -f cjs -i src/default-named.ts -o dist/sortable.js", "build:umd": "microbundle -f umd -i src/complete-umd.ts -o dist/sortable.umd.js --name Sortable", "build:modular-core": "microbundle -f esm -i src/core-named.ts -o modular/sortable.core.esm.js", "build:modular-default": "microbundle -f esm -i src/default-named.ts -o modular/sortable.esm.js", From e37fc90cbdc13d13d3c264fd9d4a7d3b11b1ba9b Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Sat, 19 Sep 2020 00:35:56 +0000 Subject: [PATCH 8/9] build(deps): yarn upgrade --- packages/sortablejs/yarn.lock | 66 +++++++++++++++++------------------ 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/packages/sortablejs/yarn.lock b/packages/sortablejs/yarn.lock index 4f2846beb..6872bad85 100644 --- a/packages/sortablejs/yarn.lock +++ b/packages/sortablejs/yarn.lock @@ -971,9 +971,9 @@ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== "@types/node@*": - version "14.10.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.10.1.tgz#cc323bad8e8a533d4822f45ce4e5326f36e42177" - integrity sha512-aYNbO+FZ/3KGeQCEkNhHFRIzBOUgc7QvcVNKXbfnhDkSfwUv91JsQQa10rDgKSTSLkXZ1UIyPe4FJJNVgw1xWQ== + version "14.11.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.1.tgz#56af902ad157e763f9ba63d671c39cda3193c835" + integrity sha512-oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw== "@types/parse-json@^4.0.0": version "4.0.0" @@ -1111,13 +1111,13 @@ brotli-size@^4.0.0: duplexer "0.1.1" browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5: - version "4.14.2" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce" - integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw== + version "4.14.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.3.tgz#381f9e7f13794b2eb17e1761b4f118e8ae665a53" + integrity sha512-GcZPC5+YqyPO4SFnz48/B0YaCwS47Q9iPChRGi6t7HhflKBcINzFrJvRfC+jp30sRMKxF+d4EHGs27Z0XP1NaQ== dependencies: - caniuse-lite "^1.0.30001125" - electron-to-chromium "^1.3.564" - escalade "^3.0.2" + caniuse-lite "^1.0.30001131" + electron-to-chromium "^1.3.570" + escalade "^3.1.0" node-releases "^1.1.61" buffer-from@^1.0.0: @@ -1169,10 +1169,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125: - version "1.0.30001129" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001129.tgz#e6514b94c0ef50f98cf7476daa91228ddd2ef7bc" - integrity sha512-9945fTVKS810DZITpsAbuhQG7Lam0tEfVbZlsBaCFZaszepbryrArS05PWmJSBQ6mta+v9iz0pUIAbW1eBILIg== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001131: + version "1.0.30001131" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001131.tgz#afad8a28fc2b7a0d3ae9407e71085a0ead905d54" + integrity sha512-4QYi6Mal4MMfQMSqGIRPGbKIbZygeN83QsWq1ixpUwvtfgAZot5BrCKzGygvZaV+CnELdTwD0S4cqUNozq7/Cw== chalk@^1.0.0, chalk@^1.1.3: version "1.1.3" @@ -1531,10 +1531,10 @@ duplexer@^0.1.1: resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== -electron-to-chromium@^1.3.564: - version "1.3.567" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.567.tgz#7a404288952ac990e447a7a86470d460ea953b8f" - integrity sha512-1aKkw0Hha1Bw9JA5K5PT5eFXC/TXbkJvUfNSNEciPUMgSIsRJZM1hF2GUEAGZpAbgvd8En21EA+Lv820KOhvqA== +electron-to-chromium@^1.3.570: + version "1.3.570" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.570.tgz#3f5141cc39b4e3892a276b4889980dabf1d29c7f" + integrity sha512-Y6OCoVQgFQBP5py6A/06+yWxUZHDlNr/gNDGatjH8AZqXl8X0tE4LfjLJsXGz/JmWJz8a6K7bR1k+QzZ+k//fg== emojis-list@^3.0.0: version "3.0.0" @@ -1602,10 +1602,10 @@ es6-promisify@^6.1.1: resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-6.1.1.tgz#46837651b7b06bf6fff893d03f29393668d01621" integrity sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg== -escalade@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" - integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== +escalade@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e" + integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig== escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" @@ -2554,9 +2554,9 @@ postcss-discard-overridden@^4.0.1: postcss "^7.0.0" postcss-load-config@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" - integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.1.tgz#0a684bb8beb05e55baf922f7ab44c3edb17cf78e" + integrity sha512-D2ENobdoZsW0+BHy4x1CAkXtbXtYWYRIxL/JbtRBqrRGOPtJ2zoga/bEZWhV/ShWB5saVxJMzbMdSyA/vv4tXw== dependencies: cosmiconfig "^5.0.0" import-cwd "^2.0.0" @@ -2841,9 +2841,9 @@ postcss@^6.0.1: supports-color "^5.4.0" postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.27, postcss@^7.0.32: - version "7.0.32" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" - integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== + version "7.0.34" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.34.tgz#f2baf57c36010df7de4009940f21532c16d65c20" + integrity sha512-H/7V2VeNScX9KE83GDrDZNiGT1m2H+UTnlinIzhjlLX9hfMUn1mHNnGeX81a1c8JSBdBvqk7c2ZOG6ZPn5itGw== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -2912,9 +2912,9 @@ regenerator-transform@^0.14.2: "@babel/runtime" "^7.8.4" regexpu-core@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== + version "4.7.1" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" + integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== dependencies: regenerate "^1.4.0" regenerate-unicode-properties "^8.2.0" @@ -3177,9 +3177,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.5" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + version "3.0.6" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" + integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== sprintf-js@~1.0.2: version "1.0.3" From b3d470c40f770c11c67a04a4615924a7e973f47e Mon Sep 17 00:00:00 2001 From: Wayne Van Son Date: Sat, 19 Sep 2020 00:37:06 +0000 Subject: [PATCH 9/9] v1.11.2-alpha.4 --- lerna.json | 2 +- packages/sortable/package.json | 2 +- packages/sortablejs/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lerna.json b/lerna.json index 37bde8fdb..c63d29465 100644 --- a/lerna.json +++ b/lerna.json @@ -5,6 +5,6 @@ "packages/plugins/*", "packages/utils" ], - "version": "1.11.2-alpha.3", + "version": "1.11.2-alpha.4", "npmClient": "yarn" } diff --git a/packages/sortable/package.json b/packages/sortable/package.json index b4b901969..278518c9a 100644 --- a/packages/sortable/package.json +++ b/packages/sortable/package.json @@ -1,5 +1,5 @@ { "name": "@sortable/sortable", - "version": "1.11.2-alpha.0", + "version": "1.11.2-alpha.4", "private": true } diff --git a/packages/sortablejs/package.json b/packages/sortablejs/package.json index ed86986b0..84a25fd6b 100644 --- a/packages/sortablejs/package.json +++ b/packages/sortablejs/package.json @@ -1,6 +1,6 @@ { "name": "sortablejs", - "version": "1.11.2-alpha.3", + "version": "1.11.2-alpha.4", "description": "JavaScript library for reorderable drag-and-drop lists on modern browsers and touch devices", "main": "dist/sortable.js", "browser": "dist/sortable.umd.js",