-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Monorepo #138
Monorepo #138
Changes from all commits
e7ed02d
5d8b61a
1770fa9
46e7c04
4c9aa9a
92be9db
128cc8c
885cb1e
6b40999
e3f6fd4
7f5f3b0
5a92ed2
d109573
f940ba0
5e663db
33b20c4
2f92db9
2879f7a
007030b
729ab9d
81722d2
66bf066
c5152f1
ecc3af2
776ee6d
b5c57d7
76576d5
a5021bc
e1a6d7c
6bc7f5a
3059ba0
6de2c3e
a95de06
02ffdbf
59b3d88
fda40b2
3cc9247
c4fd97b
5e08af9
bc303fd
f54db2f
8d35925
416b5b9
3a01202
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [["@suddenlygiovanni/*"]], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
--- |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,31 +16,17 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: 🧬 Setup Biome | ||
uses: biomejs/setup-biome@v2 | ||
|
||
- name: 👣 Retrieve Git REF | ||
run: echo "GIT_REF=$(git rev-parse origin/main)" >> $GITHUB_ENV | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [actionlint] reported by reviewdog 🐶 |
||
|
||
- name: 🐛 Debug Git REF | ||
run: echo "${{ env.GIT_REF }}" | ||
- name: 📦 Setup Node, Pnpm and install deps | ||
uses: ./.github/actions/setup | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 💅 Format code (with Biome) | ||
continue-on-error: true | ||
run: | | ||
biome check \ | ||
--write \ | ||
--changed \ | ||
--since=${{ env.GIT_REF }} \ | ||
--formatter-enabled=true \ | ||
--linter-enabled=false \ | ||
--organize-imports-enabled=true \ | ||
--vcs-enabled=true \ | ||
--vcs-use-ignore-file=true \ | ||
--no-errors-on-unmatched \ | ||
--log-level=warn \ | ||
--reporter=github \ | ||
. | ||
run: pnpm run -r format:write --since=${{ env.GIT_REF }} | ||
|
||
- name: 🚦 Git Auto Commit Lint fixes (with Biome) | ||
uses: stefanzweifel/git-auto-commit-action@v5.0.1 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,29 @@ | ||
{ | ||
"name": "@suddenlygiovanni/resume", | ||
"version": "13.3.1", | ||
"type": "module", | ||
"exports": { | ||
"./resume.yml": "./resume.yml", | ||
"./schema-resume": "./src/schema-resume/index.ts", | ||
"./schema-primitive": "./src/schema-primitive/index.ts" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://npm.pkg.github.com", | ||
"exports": { | ||
"./schema-resume": "./lib/schema-resume/index.js", | ||
"./schema-primitive": "./lib/schema-primitive/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib/**", | ||
"README.md" | ||
], | ||
"author": { | ||
"name": "Giovanni Ravalico", | ||
"email": "15946771+suddenlygiovanni@users.noreply.github.com", | ||
"url": "https://wwww.suddenlygiovanni.dev/resume" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/suddenlyGiovanni/resume.git" | ||
}, | ||
"version": "13.3.1", | ||
"private": true, | ||
"scripts": { | ||
"build": "tsc -b tsconfig.build.json", | ||
"ci:publish": "pmpm publish", | ||
"typecheck": "tsc --noEmit", | ||
"changeset:add": "pnpm exec changeset add", | ||
"changeset:empty": "pnpm exec changeset --empty", | ||
"changeset:publish": "pnpm exec changeset publish", | ||
"changeset:version": "pnpm exec changeset version", | ||
"format": "biome format .", | ||
"format:write": "pnpm format --write", | ||
"test": "vitest" | ||
"changeset:version": "pnpm exec changeset version" | ||
}, | ||
"license": "UNLICENSED", | ||
"peerDependencieqs": { | ||
"effect": "~3.12.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@changesets/cli": "2.27.11", | ||
"@std/yaml": "npm:@jsr/std__yaml@1.0.5", | ||
"@tsconfig/node22": "22.0.0", | ||
"@tsconfig/strictest": "2.0.5", | ||
"@types/json-schema": "7.0.15", | ||
"@types/node": "22.10.5", | ||
"@vitest/coverage-v8": "3.0.0-beta.3", | ||
"@vitest/ui": "3.0.0-beta.3", | ||
"effect": "3.12.0", | ||
"typescript": "5.7.2", | ||
"vite-tsconfig-paths": "5.1.4", | ||
"vitest": "3.0.0-beta.3" | ||
"@biomejs/biome": "catalog:", | ||
"@changesets/cli": "catalog:", | ||
"@tsconfig/node23": "catalog:", | ||
"@tsconfig/strictest": "catalog:", | ||
"@types/node": "catalog:", | ||
"@vitest/coverage-v8": "catalog:", | ||
"@vitest/ui": "catalog:", | ||
"typescript": "catalog:", | ||
"vitest": "catalog:" | ||
}, | ||
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321", | ||
"engines": { | ||
"node": ">=23" | ||
"node": ">=23", | ||
"pnpm": ">=9.15" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "../../node_modules/@biomejs/biome/configuration_schema.json", | ||
"extends": ["../../biome.json"], | ||
"files": { | ||
"include": ["./src/**/*", "./test/**/*"], | ||
"ignore": ["./src/schema.json", "./src/resume.yml"] | ||
}, | ||
"overrides": [ | ||
{ | ||
"include": ["src/**/*.spec.ts"], | ||
"linter": { | ||
"rules": { | ||
"correctness": { | ||
"noNodejsModules": "off" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[actionlint] reported by reviewdog 🐶
key "run" is duplicated in element of "steps" section. previously defined at line:25,col:9 [syntax-check]