Skip to content

Commit

Permalink
lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Feb 1, 2024
1 parent ce80cab commit 2cd94ac
Show file tree
Hide file tree
Showing 6 changed files with 3,000 additions and 105 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,5 @@ dist
.pnp.*

.DS_Store

.nx/cache
5 changes: 5 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.0",
"npmClient": "pnpm"
}
50 changes: 50 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"targetDefaults": {
"prepublishOnly": {
"dependsOn": []
},
"types": {
"dependsOn": []
},
"types:watch": {
"dependsOn": []
},
"build": {
"cache": true,
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/**/*.js"]
},
"build:watch": {
"dependsOn": []
},
"format:src": {
"dependsOn": []
},
"format:examples": {
"dependsOn": []
},
"format": {
"dependsOn": []
},
"test": {
"cache": true,
"dependsOn": ["build"]
},
"test:watch": {
"dependsOn": []
},
"test:coverage": {
"dependsOn": []
},
"postpublish": {
"dependsOn": []
},
"lint": {
"cache": true,
"dependsOn": []
},
"start": {
"dependsOn": []
}
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"scripts": {
"prepare": "husky install && git config feature.manyFiles true",
"test": "turbo test",
"lint": "turbo lint"
"test": "lerna run test",
"lint": "lerna run lint"
},
"lint-staged": {
"*.toml": [
Expand Down Expand Up @@ -39,8 +39,8 @@
"cross-env": "^7.0.3",
"cspell": "^6.31.1",
"husky": "^8.0.3",
"lerna": "^8.0.2",
"lint-staged": "^13.2.3",
"prettier": "^2",
"turbo": "^1.10.7"
"prettier": "^2"
}
}
Loading

0 comments on commit 2cd94ac

Please sign in to comment.