Skip to content

Commit

Permalink
wip: add project json
Browse files Browse the repository at this point in the history
  • Loading branch information
devdigital committed Jan 7, 2024
1 parent 8495121 commit 70f1a93
Show file tree
Hide file tree
Showing 19 changed files with 947 additions and 2,678 deletions.
6 changes: 6 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": [
"@commitlint/config-angular"
],
"rules": {}
}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: github.ref == 'refs/heads/main'
run: |
alias npm=yarn
yarn semantic-release
yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn run commitlint --edit "$1"
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@
],
"scripts": {
"test": "nx run-many --target=test",
"build": "nx run-many --target=build"
"build": "nx run-many --target=build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-angular": "^18.0.0",
"@jscutlery/semver": "^4.2.0",
"@nx/devkit": "^17.2.8",
"@tsconfig/node20": "^20.1.2",
"husky": "^8.0.0",
"nx": "17.1.2"
}
}
Empty file.
4 changes: 4 additions & 0 deletions packages/config-eslint/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/config-eslint",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
Empty file.
4 changes: 4 additions & 0 deletions packages/config-prettier/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/config-prettier",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/deepmerge/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/deepmerge",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/dummy/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/dummy",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/file/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/file",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/get/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/get",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/github/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/github",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/logger/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/logger",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/merge/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/merge",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/object/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/object",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/tokenizer/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/tokenizer",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
4 changes: 4 additions & 0 deletions packages/types/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@utilz/types",
"$schema": "../../node_modules/nx/schemas/project-schema.json"
}
Loading

0 comments on commit 70f1a93

Please sign in to comment.