refactor: remove component library as internal dependency (#54322)

This commit is contained in:
Sem Bauke
2024-04-08 19:35:30 +02:00
committed by GitHub
parent a22e7495ad
commit 84b1a402a8
129 changed files with 80 additions and 8824 deletions
+1 -3
View File
@@ -64,7 +64,7 @@
"lint": "npm-run-all create:shared -p lint:*",
"lint:challenges": "cd ./curriculum && pnpm run lint",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:ts": "tsc && tsc -p shared && tsc -p tools/ui-components && tsc -p api",
"lint:ts": "tsc && tsc -p shared && tsc -p api",
"lint:prettier": "prettier --list-different .",
"reload:server": "pm2 reload api-server/ecosystem.config.js",
"preseed": "npm-run-all create:shared",
@@ -80,7 +80,6 @@
"start": "npm-run-all create:shared -p develop:server serve:client",
"start-ci": "npm-run-all create:shared -p start:server serve:client-ci",
"start:server": "pm2 start api-server/ecosystem.config.js",
"storybook": "cd ./tools/ui-components && pnpm run storybook",
"test": "run-s create:shared build:curriculum build-workers test:*",
"test:source": "jest",
"test:api": "cd api && jest --force-exit",
@@ -92,7 +91,6 @@
"test-server": "jest api-server",
"test-tools": "jest tools",
"test-utils": "jest utils",
"test-ui-components": "jest tools/ui-components",
"postinstall": "cypress cache prune",
"prepare": "husky"
},