mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 10:17:35 +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": {
|
||||
"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: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": {
|
||||
"@faker-js/faker": "^9.7.0",
|
||||
|
@@ -10,7 +10,8 @@
|
||||
"lint:check:ng": "ng lint",
|
||||
"lint:check:prettier": "prettier --check 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,
|
||||
"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: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:fix": "prettier --write cypress"
|
||||
"lint:fix": "prettier --write cypress",
|
||||
"clean": "rm -rf .turbo node_modules"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
@@ -28,6 +28,7 @@
|
||||
"scripts": {
|
||||
"bundle": "webpack",
|
||||
"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: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",
|
||||
"clean": "turbo run clean",
|
||||
"clean:all": "pnpm run clean && rm -rf .turbo node_modules",
|
||||
"generate": "turbo run generate"
|
||||
},
|
||||
"pnpm": {
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@zitadel/client",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.1",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -77,7 +77,7 @@
|
||||
"@connectrpc/connect": "^2.0.0",
|
||||
"@connectrpc/connect-node": "^2.0.0",
|
||||
"@connectrpc/connect-web": "^2.0.0",
|
||||
"@zitadel/proto": "latest",
|
||||
"@zitadel/proto": "workspace:*",
|
||||
"jose": "^5.3.0"
|
||||
},
|
||||
"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",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.1",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -8,6 +8,15 @@
|
||||
"type": "module",
|
||||
"main": "./cjs/index.js",
|
||||
"types": "./types/index.d.ts",
|
||||
"files": [
|
||||
"cjs/**",
|
||||
"es/**",
|
||||
"types/**",
|
||||
"zitadel/**",
|
||||
"google/**",
|
||||
"validate/**",
|
||||
"protoc-gen-openapiv2/**"
|
||||
],
|
||||
"exports": {
|
||||
"./zitadel/*": {
|
||||
"types": "./types/zitadel/*.d.ts",
|
||||
|
Reference in New Issue
Block a user