mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 14:37:34 +00:00
chore: cleanup scripts, v1.3.1 @zitadel/client @zitadel/proto (#10329)
This PR includes scripts for cleaning up workspaces, and changes the versions of @zitadel/client and /proto to v1.3.0
This commit is contained in:
@@ -4,7 +4,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"test:acceptance": "dotenv -e ../login/.env.test.local playwright",
|
"test:acceptance": "dotenv -e ../login/.env.test.local playwright",
|
||||||
"test:acceptance:setup": "cd ../.. && make login_test_acceptance_setup_env && NODE_ENV=test turbo run test:acceptance:setup:dev",
|
"test:acceptance:setup": "cd ../.. && make login_test_acceptance_setup_env && NODE_ENV=test turbo run test:acceptance:setup:dev",
|
||||||
"test:acceptance:setup:dev": "cd ../.. && make login_test_acceptance_setup_dev"
|
"test:acceptance:setup:dev": "cd ../.. && make login_test_acceptance_setup_dev",
|
||||||
|
"clean": "rm -rf .turbo node_modules"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@faker-js/faker": "^9.7.0",
|
"@faker-js/faker": "^9.7.0",
|
||||||
|
@@ -10,7 +10,8 @@
|
|||||||
"lint:check:ng": "ng lint",
|
"lint:check:ng": "ng lint",
|
||||||
"lint:check:prettier": "prettier --check src",
|
"lint:check:prettier": "prettier --check src",
|
||||||
"lint:fix": "prettier --write src",
|
"lint:fix": "prettier --write src",
|
||||||
"generate": "pnpm exec buf generate ../proto --include-imports --include-wkt"
|
"generate": "pnpm exec buf generate ../proto --include-imports --include-wkt",
|
||||||
|
"clean": "rm -rf dist .angular .turbo node_modules src/app/proto/generated"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@@ -13,7 +13,8 @@
|
|||||||
"test:open:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run open --",
|
"test:open:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run open --",
|
||||||
"test:e2e:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run e2e --",
|
"test:e2e:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run e2e --",
|
||||||
"lint": "prettier --check cypress",
|
"lint": "prettier --check cypress",
|
||||||
"lint:fix": "prettier --write cypress"
|
"lint:fix": "prettier --write cypress",
|
||||||
|
"clean": "rm -rf .turbo node_modules"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@@ -28,6 +28,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"bundle": "webpack",
|
"bundle": "webpack",
|
||||||
"lint": "prettier --check src/**",
|
"lint": "prettier --check src/**",
|
||||||
"lint:fix": "prettier --write src"
|
"lint:fix": "prettier --write src",
|
||||||
|
"clean": "rm -rf dist .turbo node_modules"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -7,6 +7,8 @@
|
|||||||
"devcontainer": "devcontainer",
|
"devcontainer": "devcontainer",
|
||||||
"devcontainer:lint-unit": "pnpm devcontainer up --config .devcontainer/turbo-lint-unit/devcontainer.json --workspace-folder . --remove-existing-container",
|
"devcontainer:lint-unit": "pnpm devcontainer up --config .devcontainer/turbo-lint-unit/devcontainer.json --workspace-folder . --remove-existing-container",
|
||||||
"devcontainer:integration:login": "pnpm devcontainer up --config .devcontainer/login-integration/devcontainer.json --workspace-folder . --remove-existing-container",
|
"devcontainer:integration:login": "pnpm devcontainer up --config .devcontainer/login-integration/devcontainer.json --workspace-folder . --remove-existing-container",
|
||||||
|
"clean": "turbo run clean",
|
||||||
|
"clean:all": "pnpm run clean && rm -rf .turbo node_modules",
|
||||||
"generate": "turbo run generate"
|
"generate": "turbo run generate"
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@zitadel/client",
|
"name": "@zitadel/client",
|
||||||
"version": "1.2.0",
|
"version": "1.3.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
"@connectrpc/connect": "^2.0.0",
|
"@connectrpc/connect": "^2.0.0",
|
||||||
"@connectrpc/connect-node": "^2.0.0",
|
"@connectrpc/connect-node": "^2.0.0",
|
||||||
"@connectrpc/connect-web": "^2.0.0",
|
"@connectrpc/connect-web": "^2.0.0",
|
||||||
"@zitadel/proto": "latest",
|
"@zitadel/proto": "workspace:*",
|
||||||
"jose": "^5.3.0"
|
"jose": "^5.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
6
packages/zitadel-proto/.npmignore
Normal file
6
packages/zitadel-proto/.npmignore
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
node_modules
|
||||||
|
.turbo
|
||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
|
buf.gen.yaml
|
||||||
|
turbo.json
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@zitadel/proto",
|
"name": "@zitadel/proto",
|
||||||
"version": "1.2.0",
|
"version": "1.3.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
@@ -8,6 +8,15 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./cjs/index.js",
|
"main": "./cjs/index.js",
|
||||||
"types": "./types/index.d.ts",
|
"types": "./types/index.d.ts",
|
||||||
|
"files": [
|
||||||
|
"cjs/**",
|
||||||
|
"es/**",
|
||||||
|
"types/**",
|
||||||
|
"zitadel/**",
|
||||||
|
"google/**",
|
||||||
|
"validate/**",
|
||||||
|
"protoc-gen-openapiv2/**"
|
||||||
|
],
|
||||||
"exports": {
|
"exports": {
|
||||||
"./zitadel/*": {
|
"./zitadel/*": {
|
||||||
"types": "./types/zitadel/*.d.ts",
|
"types": "./types/zitadel/*.d.ts",
|
||||||
|
Reference in New Issue
Block a user