From 27f3a84066f92861fed836332d9ef98990ed2d7f Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 13 Dec 2021 15:05:53 +0100 Subject: [PATCH 1/3] meta: move dev workspace to `private/` --- examples/dev/output/.empty | 0 package.json | 18 +- {examples => private}/dev/Dashboard.js | 0 {examples => private}/dev/DragDrop.html | 0 {examples => private}/dev/DragDrop.js | 0 {examples => private}/dev/index.html | 0 {examples => private}/dev/index.js | 0 {examples => private}/dev/package.json | 2 +- {examples => private}/dev/sw.js | 0 {examples => private}/dev/vite.config.js | 0 private/locale-pack/package.json | 2 +- private/release/package.json | 2 +- private/remark-lint-uppy/package.json | 2 +- yarn.lock | 320 +++++++++++------------ 14 files changed, 172 insertions(+), 174 deletions(-) delete mode 100644 examples/dev/output/.empty rename {examples => private}/dev/Dashboard.js (100%) rename {examples => private}/dev/DragDrop.html (100%) rename {examples => private}/dev/DragDrop.js (100%) rename {examples => private}/dev/index.html (100%) rename {examples => private}/dev/index.js (100%) rename {examples => private}/dev/package.json (93%) rename {examples => private}/dev/sw.js (100%) rename {examples => private}/dev/vite.config.js (100%) diff --git a/examples/dev/output/.empty b/examples/dev/output/.empty deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/package.json b/package.json index 6f9746bccd..4d375efd3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "name": "uppy-build", + "name": "@uppy-dev/build", "version": "0.0.0", "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:", "lint-staged": { @@ -13,7 +13,7 @@ }, "remarkConfig": { "plugins": [ - "remark-lint-uppy" + "@uppy-dev/remark-lint-uppy" ] }, "size-limit": [ @@ -53,6 +53,7 @@ "@types/jasminewd2": "file:./private/@types/jasmine", "@typescript-eslint/eslint-plugin": "^5.0.0", "@typescript-eslint/parser": "^5.0.0", + "@uppy-dev/remark-lint-uppy": "workspace:*", "adm-zip": "^0.5.5", "aliasify": "^2.1.0", "autoprefixer": "^10.2.6", @@ -104,7 +105,6 @@ "postcss-safe-important": "^1.2.0", "pre-commit": "^1.2.2", "remark-cli": "^10.0.0", - "remark-lint-uppy": "workspace:*", "replacestream": "^4.0.3", "resolve": "^1.17.0", "sass": "^1.29.0", @@ -132,13 +132,11 @@ "build:angular": "yarn workspace @uppy/angular build:release", "build:js": "npm-run-all build:lib build:companion build:locale-pack build:svelte build:angular build:bundle", "build:lib": "yarn node ./bin/build-lib.js", - "build:locale-pack": "yarn workspace locale-pack build && eslint packages/@uppy/locales/src/en_US.js --fix && yarn workspace locale-pack test unused", + "build:locale-pack": "yarn workspace @uppy-dev/locale-pack build && eslint packages/@uppy/locales/src/en_US.js --fix && yarn workspace @uppy-dev/locale-pack test unused", "build": "npm-run-all --parallel build:js build:css --serial size", "contributors:save": "yarn node ./bin/update-contributors.mjs", - "dev:browsersync": "yarn workspace @uppy-example/dev start", - "dev:watch-sandbox": "yarn workspace @uppy-example/dev watch:sandbox", - "dev:with-companion": "npm-run-all --parallel start:companion dev:watch-sandbox watch:js:lib watch:css dev:browsersync", - "dev": "yarn workspace @uppy-example/dev dev", + "dev:with-companion": "npm-run-all --parallel start:companion dev", + "dev": "yarn workspace @uppy-dev/dev dev", "example": "yarn node bin/run-example", "lint:fix": "yarn run lint -- --fix", "lint:markdown": "remark -f -q . -i .remarkignore", @@ -153,8 +151,8 @@ "test:companion": "yarn workspace @uppy/companion test", "test:endtoend:local": "yarn workspace @uppy-tests/end2end test:endtoend:local", "test:endtoend": "yarn workspace @uppy-tests/end2end test:endtoend", - "test:locale-packs:unused": "yarn workspace locale-pack test unused", - "test:locale-packs:warnings": "yarn workspace locale-pack test warnings", + "test:locale-packs:unused": "yarn workspace @uppy-dev/locale-pack test unused", + "test:locale-packs:warnings": "yarn workspace @uppy-dev/locale-pack test warnings", "test:type": "yarn workspaces foreach -piv --include '@uppy/*' --exclude '@uppy/{angular,react-native,locales,companion,provider-views,robodog,svelte}' exec tsd", "test:unit": "yarn run build:lib && jest --env jsdom", "test:watch": "jest --env jsdom --watch", diff --git a/examples/dev/Dashboard.js b/private/dev/Dashboard.js similarity index 100% rename from examples/dev/Dashboard.js rename to private/dev/Dashboard.js diff --git a/examples/dev/DragDrop.html b/private/dev/DragDrop.html similarity index 100% rename from examples/dev/DragDrop.html rename to private/dev/DragDrop.html diff --git a/examples/dev/DragDrop.js b/private/dev/DragDrop.js similarity index 100% rename from examples/dev/DragDrop.js rename to private/dev/DragDrop.js diff --git a/examples/dev/index.html b/private/dev/index.html similarity index 100% rename from examples/dev/index.html rename to private/dev/index.html diff --git a/examples/dev/index.js b/private/dev/index.js similarity index 100% rename from examples/dev/index.js rename to private/dev/index.js diff --git a/examples/dev/package.json b/private/dev/package.json similarity index 93% rename from examples/dev/package.json rename to private/dev/package.json index 9e9b266a0b..0a1374541b 100644 --- a/examples/dev/package.json +++ b/private/dev/package.json @@ -1,5 +1,5 @@ { - "name": "@uppy-example/dev", + "name": "@uppy-dev/dev", "version": "0.0.0", "aliasify": { "aliases": { diff --git a/examples/dev/sw.js b/private/dev/sw.js similarity index 100% rename from examples/dev/sw.js rename to private/dev/sw.js diff --git a/examples/dev/vite.config.js b/private/dev/vite.config.js similarity index 100% rename from examples/dev/vite.config.js rename to private/dev/vite.config.js diff --git a/private/locale-pack/package.json b/private/locale-pack/package.json index d4ce0dce69..504e116b4d 100644 --- a/private/locale-pack/package.json +++ b/private/locale-pack/package.json @@ -1,6 +1,6 @@ { "private": true, - "name": "locale-pack", + "name": "@uppy-dev/locale-pack", "author": "Merlijn Vos ", "description": "Generate locale pack, types, and documentation", "main": "index.mjs", diff --git a/private/release/package.json b/private/release/package.json index 021d10f932..14e5b4463b 100644 --- a/private/release/package.json +++ b/private/release/package.json @@ -1,5 +1,5 @@ { - "name": "@uppy-build/release", + "name": "@uppy-dev/release", "version": "0.0.0", "private": true, "type": "module", diff --git a/private/remark-lint-uppy/package.json b/private/remark-lint-uppy/package.json index 9eb3cafc41..2259e55dc8 100644 --- a/private/remark-lint-uppy/package.json +++ b/private/remark-lint-uppy/package.json @@ -1,5 +1,5 @@ { - "name": "remark-lint-uppy", + "name": "@uppy-dev/remark-lint-uppy", "version": "0.0.0", "main": "index.js", "dependencies": { diff --git a/yarn.lock b/yarn.lock index 7eba171421..1e02a722bc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6542,9 +6542,9 @@ __metadata: languageName: node linkType: hard -"@types/jasmine@file:./private/@types/jasmine::locator=uppy-build%40workspace%3A.": +"@types/jasmine@file:./private/@types/jasmine::locator=%40uppy-dev%2Fbuild%40workspace%3A.": version: 0.0.0 - resolution: "@types/jasmine@file:./private/@types/jasmine#./private/@types/jasmine::hash=917119&locator=uppy-build%40workspace%3A." + resolution: "@types/jasmine@file:./private/@types/jasmine#./private/@types/jasmine::hash=917119&locator=%40uppy-dev%2Fbuild%40workspace%3A." checksum: cc86c9a338a6943da64fb636e13bdc8f2e41922ae62c3cfd95525b0a0965a28ecd7545173773f2b61a3c30ae70c8eeb9a725eb71fd9006a07a8733ecbac849b9 languageName: node linkType: hard @@ -6563,9 +6563,9 @@ __metadata: languageName: node linkType: hard -"@types/jasminewd2@file:./private/@types/jasmine::locator=uppy-build%40workspace%3A.": +"@types/jasminewd2@file:./private/@types/jasmine::locator=%40uppy-dev%2Fbuild%40workspace%3A.": version: 0.0.0 - resolution: "@types/jasminewd2@file:./private/@types/jasmine#./private/@types/jasmine::hash=fe65e0&locator=uppy-build%40workspace%3A." + resolution: "@types/jasminewd2@file:./private/@types/jasmine#./private/@types/jasmine::hash=fe65e0&locator=%40uppy-dev%2Fbuild%40workspace%3A." checksum: 028a3a54e144661b64d14b439c585db2ade1a22ba4b21de85cb469afd2f1bf5e78079ab3f3e5c058ed4146e7cef5300e27c8d176d9f168222d88576671608135 languageName: node linkType: hard @@ -7446,9 +7446,125 @@ __metadata: languageName: node linkType: hard -"@uppy-build/release@workspace:private/release": +"@uppy-dev/build@workspace:.": version: 0.0.0-use.local - resolution: "@uppy-build/release@workspace:private/release" + resolution: "@uppy-dev/build@workspace:." + dependencies: + "@babel/cli": ^7.14.5 + "@babel/core": ^7.14.6 + "@babel/eslint-parser": ^7.11.3 + "@babel/eslint-plugin": ^7.11.3 + "@babel/plugin-proposal-nullish-coalescing-operator": ^7.14.5 + "@babel/plugin-proposal-optional-chaining": ^7.16.0 + "@babel/plugin-transform-react-jsx": ^7.10.4 + "@babel/preset-env": ^7.14.7 + "@babel/register": ^7.10.5 + "@goto-bus-stop/envify": ^5.0.0 + "@jamen/lorem": ^0.2.0 + "@size-limit/preset-big-lib": 7.0.4 + "@types/jasmine": "file:./private/@types/jasmine" + "@types/jasminewd2": "file:./private/@types/jasmine" + "@typescript-eslint/eslint-plugin": ^5.0.0 + "@typescript-eslint/parser": ^5.0.0 + "@uppy-dev/remark-lint-uppy": "workspace:*" + adm-zip: ^0.5.5 + aliasify: ^2.1.0 + autoprefixer: ^10.2.6 + aws-sdk: ^2.1038.0 + babel-jest: ^27.0.6 + babel-plugin-inline-package-json: ^2.0.0 + babelify: ^10.0.0 + browserify: ^17.0.0 + chalk: ^4.1.1 + concat-stream: ^2.0.0 + core-js: ~3.19.3 + cssnano: ^5.0.6 + dedent: ^0.7.0 + deep-freeze: ^0.0.1 + disc: ^1.3.3 + eslint: ^8.0.0 + eslint-config-transloadit: ^2.0.0 + eslint-plugin-compat: ^4.0.0 + eslint-plugin-import: ^2.25.2 + eslint-plugin-jest: ^25.0.0 + eslint-plugin-jsdoc: ^37.0.0 + eslint-plugin-jsx-a11y: ^6.4.1 + eslint-plugin-markdown: ^2.2.0 + eslint-plugin-node: ^11.1.0 + eslint-plugin-prefer-import: ^0.0.1 + eslint-plugin-promise: ^5.1.1 + eslint-plugin-react: ^7.22.0 + eslint-plugin-react-hooks: ^4.2.0 + events.once: ^2.0.2 + exorcist: ^2.0.0 + fakefile: ^1.0.0 + github-contributors-list: ^1.2.4 + glob: ^7.2.0 + isomorphic-fetch: ^3.0.0 + jest: ^27.0.6 + lint-staged: ^12.1.2 + mime-types: ^2.1.26 + minify-stream: ^2.0.1 + multi-glob: ^1.0.2 + nodemon: ^2.0.8 + npm-auth-to-token: 1.0.0 + npm-packlist: ^2.2.2 + npm-run-all: ^4.1.5 + onchange: ^7.1.0 + pacote: ^11.3.4 + postcss: ^8.2.10 + postcss-dir-pseudo-class: ^5.0.0 + postcss-logical: ^4.0.2 + postcss-safe-important: ^1.2.0 + pre-commit: ^1.2.2 + remark-cli: ^10.0.0 + replacestream: ^4.0.3 + resolve: ^1.17.0 + sass: ^1.29.0 + size-limit: 4.5.6 + stylelint: ^13.13.1 + stylelint-config-rational-order: ^0.1.2 + stylelint-config-standard: ^22.0.0 + stylelint-scss: ^3.20.1 + tar: ^6.1.0 + temp-write: ^5.0.0 + terser: ^5.7.0 + tinyify: ^3.0.0 + tsd: ^0.17.0 + tsify: ^5.0.1 + typescript: ~4.4 + verdaccio: ^5.1.1 + watchify: ^4.0.0 + languageName: unknown + linkType: soft + +"@uppy-dev/dev@workspace:private/dev": + version: 0.0.0-use.local + resolution: "@uppy-dev/dev@workspace:private/dev" + dependencies: + "@babel/core": ^7.4.4 + "@babel/plugin-transform-react-jsx": ^7.10.4 + babel-plugin-transform-commonjs: 1.1.6 + vite: ^2.7.1 + languageName: unknown + linkType: soft + +"@uppy-dev/locale-pack@workspace:private/locale-pack": + version: 0.0.0-use.local + resolution: "@uppy-dev/locale-pack@workspace:private/locale-pack" + dependencies: + chalk: ^4.1.2 + dedent: ^0.7.0 + glob: ^7.2.0 + mdast-util-heading-range: ^3.1.0 + remark: ^14.0.1 + remark-frontmatter: ^4.0.1 + languageName: unknown + linkType: soft + +"@uppy-dev/release@workspace:private/release": + version: 0.0.0-use.local + resolution: "@uppy-dev/release@workspace:private/release" dependencies: globby: ^12.0.2 node-fetch: ^3.1.0 @@ -7456,6 +7572,40 @@ __metadata: languageName: unknown linkType: soft +"@uppy-dev/remark-lint-uppy@workspace:*, @uppy-dev/remark-lint-uppy@workspace:private/remark-lint-uppy": + version: 0.0.0-use.local + resolution: "@uppy-dev/remark-lint-uppy@workspace:private/remark-lint-uppy" + dependencies: + mdast-comment-marker: ^2.1.0 + remark-frontmatter: ^4.0.0 + remark-lint: ^9.0.0 + remark-lint-emphasis-marker: ^3.0.0 + remark-lint-final-newline: ^2.0.0 + remark-lint-hard-break-spaces: ^3.0.0 + remark-lint-no-auto-link-without-protocol: ^3.1.0 + remark-lint-no-blockquote-without-marker: ^5.0.0 + remark-lint-no-duplicate-definitions: ^3.0.0 + remark-lint-no-heading-content-indent: ^4.0.0 + remark-lint-no-inline-padding: ^4.0.0 + remark-lint-no-literal-urls: ^3.0.0 + remark-lint-no-shortcut-reference-image: ^3.1.0 + remark-lint-no-shortcut-reference-link: ^3.1.0 + remark-lint-no-undefined-references: ^4.0.0 + remark-lint-no-unused-definitions: ^3.1.0 + remark-lint-ordered-list-marker-style: ^3.1.0 + remark-lint-strong-marker: ^3.1.0 + remark-retext: ^5.0.0 + retext-english: ^4.0.0 + retext-equality: ^6.2.0 + retext-profanities: ^7.1.0 + retext-quotes: ^5.0.0 + retext-simplify: ^7.0.0 + retext-syntax-mentions: ^3.1.0 + unified: ^10.0.0 + unified-message-control: ^4.0.0 + languageName: unknown + linkType: soft + "@uppy-example/aws-companion@workspace:examples/aws-companion": version: 0.0.0-use.local resolution: "@uppy-example/aws-companion@workspace:examples/aws-companion" @@ -7536,17 +7686,6 @@ __metadata: languageName: unknown linkType: soft -"@uppy-example/dev@workspace:examples/dev": - version: 0.0.0-use.local - resolution: "@uppy-example/dev@workspace:examples/dev" - dependencies: - "@babel/core": ^7.4.4 - "@babel/plugin-transform-react-jsx": ^7.10.4 - babel-plugin-transform-commonjs: 1.1.6 - vite: ^2.7.1 - languageName: unknown - linkType: soft - "@uppy-example/digitalocean-spaces@workspace:examples/digitalocean-spaces": version: 0.0.0-use.local resolution: "@uppy-example/digitalocean-spaces@workspace:examples/digitalocean-spaces" @@ -11229,9 +11368,9 @@ __metadata: languageName: node linkType: hard -"babel-plugin-transform-commonjs@patch:babel-plugin-transform-commonjs@npm:1.1.6#.yarn/patches/babel-plugin-transform-commonjs-npm-1.1.6-0007fa2809::locator=uppy-build%40workspace%3A.": +"babel-plugin-transform-commonjs@patch:babel-plugin-transform-commonjs@npm:1.1.6#.yarn/patches/babel-plugin-transform-commonjs-npm-1.1.6-0007fa2809::locator=%40uppy-dev%2Fbuild%40workspace%3A.": version: 1.1.6 - resolution: "babel-plugin-transform-commonjs@patch:babel-plugin-transform-commonjs@npm%3A1.1.6#.yarn/patches/babel-plugin-transform-commonjs-npm-1.1.6-0007fa2809::version=1.1.6&hash=f83dbd&locator=uppy-build%40workspace%3A." + resolution: "babel-plugin-transform-commonjs@patch:babel-plugin-transform-commonjs@npm%3A1.1.6#.yarn/patches/babel-plugin-transform-commonjs-npm-1.1.6-0007fa2809::version=1.1.6&hash=f83dbd&locator=%40uppy-dev%2Fbuild%40workspace%3A." dependencies: "@babel/helper-plugin-utils": ^7.0.0 peerDependencies: @@ -25949,19 +26088,6 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard -"locale-pack@workspace:private/locale-pack": - version: 0.0.0-use.local - resolution: "locale-pack@workspace:private/locale-pack" - dependencies: - chalk: ^4.1.2 - dedent: ^0.7.0 - glob: ^7.2.0 - mdast-util-heading-range: ^3.1.0 - remark: ^14.0.1 - remark-frontmatter: ^4.0.1 - languageName: unknown - linkType: soft - "localtunnel@npm:^2.0.1": version: 2.0.2 resolution: "localtunnel@npm:2.0.2" @@ -29337,9 +29463,9 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard -"npm-auth-to-token@patch:npm-auth-to-token@npm:1.0.0#.yarn/patches/npm-auth-to-token-npm-1.0.0-c288ce201f::locator=uppy-build%40workspace%3A.": +"npm-auth-to-token@patch:npm-auth-to-token@npm:1.0.0#.yarn/patches/npm-auth-to-token-npm-1.0.0-c288ce201f::locator=%40uppy-dev%2Fbuild%40workspace%3A.": version: 1.0.0 - resolution: "npm-auth-to-token@patch:npm-auth-to-token@npm%3A1.0.0#.yarn/patches/npm-auth-to-token-npm-1.0.0-c288ce201f::version=1.0.0&hash=1a3182&locator=uppy-build%40workspace%3A." + resolution: "npm-auth-to-token@patch:npm-auth-to-token@npm%3A1.0.0#.yarn/patches/npm-auth-to-token-npm-1.0.0-c288ce201f::version=1.0.0&hash=1a3182&locator=%40uppy-dev%2Fbuild%40workspace%3A." dependencies: commander: ^2.9.0 npm-registry-client: ^8.3.0 @@ -34771,40 +34897,6 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard -"remark-lint-uppy@workspace:*, remark-lint-uppy@workspace:private/remark-lint-uppy": - version: 0.0.0-use.local - resolution: "remark-lint-uppy@workspace:private/remark-lint-uppy" - dependencies: - mdast-comment-marker: ^2.1.0 - remark-frontmatter: ^4.0.0 - remark-lint: ^9.0.0 - remark-lint-emphasis-marker: ^3.0.0 - remark-lint-final-newline: ^2.0.0 - remark-lint-hard-break-spaces: ^3.0.0 - remark-lint-no-auto-link-without-protocol: ^3.1.0 - remark-lint-no-blockquote-without-marker: ^5.0.0 - remark-lint-no-duplicate-definitions: ^3.0.0 - remark-lint-no-heading-content-indent: ^4.0.0 - remark-lint-no-inline-padding: ^4.0.0 - remark-lint-no-literal-urls: ^3.0.0 - remark-lint-no-shortcut-reference-image: ^3.1.0 - remark-lint-no-shortcut-reference-link: ^3.1.0 - remark-lint-no-undefined-references: ^4.0.0 - remark-lint-no-unused-definitions: ^3.1.0 - remark-lint-ordered-list-marker-style: ^3.1.0 - remark-lint-strong-marker: ^3.1.0 - remark-retext: ^5.0.0 - retext-english: ^4.0.0 - retext-equality: ^6.2.0 - retext-profanities: ^7.1.0 - retext-quotes: ^5.0.0 - retext-simplify: ^7.0.0 - retext-syntax-mentions: ^3.1.0 - unified: ^10.0.0 - unified-message-control: ^4.0.0 - languageName: unknown - linkType: soft - "remark-lint@npm:^9.0.0": version: 9.1.1 resolution: "remark-lint@npm:9.1.1" @@ -40877,98 +40969,6 @@ hexo-filter-github-emojis@arturi/hexo-filter-github-emojis: languageName: node linkType: hard -"uppy-build@workspace:.": - version: 0.0.0-use.local - resolution: "uppy-build@workspace:." - dependencies: - "@babel/cli": ^7.14.5 - "@babel/core": ^7.14.6 - "@babel/eslint-parser": ^7.11.3 - "@babel/eslint-plugin": ^7.11.3 - "@babel/plugin-proposal-nullish-coalescing-operator": ^7.14.5 - "@babel/plugin-proposal-optional-chaining": ^7.16.0 - "@babel/plugin-transform-react-jsx": ^7.10.4 - "@babel/preset-env": ^7.14.7 - "@babel/register": ^7.10.5 - "@goto-bus-stop/envify": ^5.0.0 - "@jamen/lorem": ^0.2.0 - "@size-limit/preset-big-lib": 7.0.4 - "@types/jasmine": "file:./private/@types/jasmine" - "@types/jasminewd2": "file:./private/@types/jasmine" - "@typescript-eslint/eslint-plugin": ^5.0.0 - "@typescript-eslint/parser": ^5.0.0 - adm-zip: ^0.5.5 - aliasify: ^2.1.0 - autoprefixer: ^10.2.6 - aws-sdk: ^2.1038.0 - babel-jest: ^27.0.6 - babel-plugin-inline-package-json: ^2.0.0 - babelify: ^10.0.0 - browserify: ^17.0.0 - chalk: ^4.1.1 - concat-stream: ^2.0.0 - core-js: ~3.19.3 - cssnano: ^5.0.6 - dedent: ^0.7.0 - deep-freeze: ^0.0.1 - disc: ^1.3.3 - eslint: ^8.0.0 - eslint-config-transloadit: ^2.0.0 - eslint-plugin-compat: ^4.0.0 - eslint-plugin-import: ^2.25.2 - eslint-plugin-jest: ^25.0.0 - eslint-plugin-jsdoc: ^37.0.0 - eslint-plugin-jsx-a11y: ^6.4.1 - eslint-plugin-markdown: ^2.2.0 - eslint-plugin-node: ^11.1.0 - eslint-plugin-prefer-import: ^0.0.1 - eslint-plugin-promise: ^5.1.1 - eslint-plugin-react: ^7.22.0 - eslint-plugin-react-hooks: ^4.2.0 - events.once: ^2.0.2 - exorcist: ^2.0.0 - fakefile: ^1.0.0 - github-contributors-list: ^1.2.4 - glob: ^7.2.0 - isomorphic-fetch: ^3.0.0 - jest: ^27.0.6 - lint-staged: ^12.1.2 - mime-types: ^2.1.26 - minify-stream: ^2.0.1 - multi-glob: ^1.0.2 - nodemon: ^2.0.8 - npm-auth-to-token: 1.0.0 - npm-packlist: ^2.2.2 - npm-run-all: ^4.1.5 - onchange: ^7.1.0 - pacote: ^11.3.4 - postcss: ^8.2.10 - postcss-dir-pseudo-class: ^5.0.0 - postcss-logical: ^4.0.2 - postcss-safe-important: ^1.2.0 - pre-commit: ^1.2.2 - remark-cli: ^10.0.0 - remark-lint-uppy: "workspace:*" - replacestream: ^4.0.3 - resolve: ^1.17.0 - sass: ^1.29.0 - size-limit: 4.5.6 - stylelint: ^13.13.1 - stylelint-config-rational-order: ^0.1.2 - stylelint-config-standard: ^22.0.0 - stylelint-scss: ^3.20.1 - tar: ^6.1.0 - temp-write: ^5.0.0 - terser: ^5.7.0 - tinyify: ^3.0.0 - tsd: ^0.17.0 - tsify: ^5.0.1 - typescript: ~4.4 - verdaccio: ^5.1.1 - watchify: ^4.0.0 - languageName: unknown - linkType: soft - "uppy.io@workspace:website": version: 0.0.0-use.local resolution: "uppy.io@workspace:website" From 4117b4bfb1611388a614c3addee897e83f79d522 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 13 Dec 2021 22:55:40 +0100 Subject: [PATCH 2/3] fix DragDrop.html --- private/dev/DragDrop.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/private/dev/DragDrop.html b/private/dev/DragDrop.html index 3d285c680d..2cdfa09e96 100644 --- a/private/dev/DragDrop.html +++ b/private/dev/DragDrop.html @@ -22,7 +22,6 @@

Drag-drop is here

- - + From bb38b3dd345036801efcccf2894c3757b728391f Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 13 Dec 2021 22:57:08 +0100 Subject: [PATCH 3/3] `DragDrop.html` -> `dragdrop.html` --- private/dev/{DragDrop.html => dragdrop.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename private/dev/{DragDrop.html => dragdrop.html} (100%) diff --git a/private/dev/DragDrop.html b/private/dev/dragdrop.html similarity index 100% rename from private/dev/DragDrop.html rename to private/dev/dragdrop.html