Remove unnecessary things

This commit is contained in:
Bruno Bernardino 2022-01-27 10:33:03 +00:00
parent 0413a7cbe3
commit 81ba6ebbc8
No known key found for this signature in database
GPG Key ID: D1B0A69ADD114ECE
2 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View File

@ -24,7 +24,6 @@ packages/server/attachments
/logs
/pwa
/data
/test-data
packages/extension/dist
packages/tauri/dist
packages/tauri/src-tauri/icons

View File

@ -48,8 +48,8 @@
"tauri:build:production": "lerna run build:production",
"repl": "cd packages/server && npm run repl && cd ../..",
"test": "lerna run test",
"test:e2e": "rm -fr ./packages/server/test-data && concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,cypress \"PL_DATA_BACKEND=memory PL_E2E_TESTS=true PL_DISABLE_SW=true npm start\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress run\"",
"test:e2e:dev": "rm -fr ./packages/server/test-data && concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,cypress \"PL_DATA_BACKEND=memory PL_E2E_TESTS=true PL_DISABLE_SW=true npm run dev\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress open\"",
"test:e2e": "concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,cypress \"PL_DATA_BACKEND=memory PL_E2E_TESTS=true PL_DISABLE_SW=true npm start\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress run\"",
"test:e2e:dev": "concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,cypress \"PL_DATA_BACKEND=memory PL_E2E_TESTS=true PL_DISABLE_SW=true npm run dev\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress open\"",
"locale:extract": "lerna run extract --scope '@padloc/locale'",
"add": "lerna add $1 --scope=@padloc/$scope",
"remove": "rm packages/$scope/package-lock.json && lerna exec \"npm uninstall $1\" --scope=@padloc/$scope",