Skip to content
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

meta: move dev workspace to private/ #3368

Merged
merged 3 commits into from Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file removed examples/dev/output/.empty
Empty file.
18 changes: 8 additions & 10 deletions 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": {
Expand All @@ -13,7 +13,7 @@
},
"remarkConfig": {
"plugins": [
"remark-lint-uppy"
"@uppy-dev/remark-lint-uppy"
]
},
"size-limit": [
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions examples/dev/DragDrop.html → private/dev/dragdrop.html
Expand Up @@ -22,7 +22,6 @@ <h1>Drag-drop is here</h1>
<input type="text"/>
</main>

<link href="uppy.min.css" rel="stylesheet">
<script src="output/index.js"></script>
<script src="./index.js" type="module"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/dev/package.json → private/dev/package.json
@@ -1,5 +1,5 @@
{
"name": "@uppy-example/dev",
"name": "@uppy-dev/dev",
"version": "0.0.0",
"aliasify": {
"aliases": {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion private/locale-pack/package.json
@@ -1,6 +1,6 @@
{
"private": true,
"name": "locale-pack",
"name": "@uppy-dev/locale-pack",
"author": "Merlijn Vos <merlijn@transloadit.com>",
"description": "Generate locale pack, types, and documentation",
"main": "index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion private/release/package.json
@@ -1,5 +1,5 @@
{
"name": "@uppy-build/release",
"name": "@uppy-dev/release",
"version": "0.0.0",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion 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": {
Expand Down