mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
meta: fix yarn build:clean (#4866)
This commit is contained in:
parent
984bdc135d
commit
06371a9d1a
5 changed files with 1 additions and 9 deletions
|
|
@ -116,7 +116,7 @@
|
|||
"start:companion": "bash bin/companion.sh",
|
||||
"start:companion:with-loadbalancer": "e2e/start-companion-with-load-balancer.mjs",
|
||||
"build:bundle": "yarn node ./bin/build-bundle.mjs",
|
||||
"build:clean": "git clean -e node_modules -Xfd packages e2e .parcel-cache coverage",
|
||||
"build:clean": "cp .gitignore .gitignore.bak && printf '!node_modules\n!**/node_modules/**/*\n' >> .gitignore; git clean -Xfd packages e2e .parcel-cache coverage; mv .gitignore.bak .gitignore",
|
||||
"build:companion": "yarn workspace @uppy/companion build",
|
||||
"build:css": "yarn node ./bin/build-css.js",
|
||||
"build:svelte": "yarn workspace @uppy/svelte build",
|
||||
|
|
|
|||
1
packages/@uppy/angular/.gitignore
vendored
1
packages/@uppy/angular/.gitignore
vendored
|
|
@ -7,7 +7,6 @@
|
|||
/bazel-out
|
||||
|
||||
# Node
|
||||
/node_modules
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
|
|
|
|||
4
packages/@uppy/companion/.gitignore
vendored
4
packages/@uppy/companion/.gitignore
vendored
|
|
@ -22,10 +22,6 @@ coverage
|
|||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directory
|
||||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
|
||||
node_modules
|
||||
|
||||
# oAuth Configuration
|
||||
config/auth.js
|
||||
|
||||
|
|
|
|||
2
packages/@uppy/svelte/.gitignore
vendored
2
packages/@uppy/svelte/.gitignore
vendored
|
|
@ -1,5 +1,3 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/dist/
|
||||
/src/empty.*
|
||||
package-lock.json
|
||||
|
|
|
|||
1
packages/@uppy/vue/.gitignore
vendored
1
packages/@uppy/vue/.gitignore
vendored
|
|
@ -1,5 +1,4 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue