Skip to content

Commit

Permalink
chore: Remove lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldowseza committed Feb 8, 2024
1 parent 46d069e commit ceac3e9
Show file tree
Hide file tree
Showing 46 changed files with 2,889 additions and 10,235 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
uses: cloudscape-design/actions/.github/workflows/release.yml@main
secrets: inherit
with:
publish-packages: packages/core,packages/converter
publish-packages: lib/core,lib/converter
11 changes: 4 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
build
node_modules
/lib
coverage
packages/*/dist
packages/*/test-utils-doc
packages/*/coverage
packages/converter/test/outputs
packages/core/*.js
packages/core/*.d.ts
node_modules
outputs
packages
6 changes: 0 additions & 6 deletions lerna.json

This file was deleted.

11,411 changes: 2,702 additions & 8,709 deletions package-lock.json

Large diffs are not rendered by default.

35 changes: 23 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,43 @@
"files": [],
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext js,ts .",
"build": "lerna run build",
"test": "vitest run && lerna run test --parallel",
"postinstall": "lerna bootstrap --no-ci",
"postpublish": "lerna publish",
"build": "tsc -b && node scripts/generate-package.js && node scripts/generate-doc.js && node scripts/generate-exports.js",
"postbuild": "node scripts/generate-build.js",
"test": "vitest run",
"posttest": "node ./scripts/verify-typescript.js",
"prepare": "husky install"
},
"devDependencies": {
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-decorators": "^7.16.0",
"@babel/plugin-syntax-typescript": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@cloudscape-design/documenter": "^1.0.0",
"@types/node": "^18.0.0",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"css-selector-tokenizer": "^0.8.0",
"css.escape": "^1.5.1",
"glob": "^7.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/babel__core": "^7.1.16",
"@types/glob": "^8.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react-dom": "^18.0.10",
"@vitest/coverage-istanbul": "^1.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.1",
"husky": "^8.0.1",
"jsdom": "^24.0.0",
"lerna": "^5.5.2",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4",
"vitest": "^1.2.2"
"vitest": "^1.2.2",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
Expand Down
Loading

0 comments on commit ceac3e9

Please sign in to comment.