Skip to content
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

Release next #117

Merged
merged 25 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8d29b74
Merge pull request #52 from lsndr/master
lsndr Apr 21, 2024
615f834
chore(deps-dev): bump @types/jest from 27.0.2 to 29.5.12 (#54)
dependabot[bot] Apr 23, 2024
74981e0
chore(deps-dev): bump lint-staged from 11.2.3 to 15.2.2 (#53)
dependabot[bot] Apr 23, 2024
d01f7b1
chore(deps-dev): bump conventional-changelog-conventionalcommits (#55)
dependabot[bot] Apr 23, 2024
b4d4bda
chore(deps-dev): bump @typescript-eslint/eslint-plugin (#57)
dependabot[bot] May 4, 2024
dc0511d
chore(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.7.1 (…
dependabot[bot] May 4, 2024
e986290
chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0 (#58)
dependabot[bot] May 4, 2024
67abe22
chore(deps-dev): bump @typescript-eslint/eslint-plugin (#61)
dependabot[bot] May 7, 2024
df18fc1
chore(deps-dev): bump @typescript-eslint/parser from 7.7.1 to 7.8.0 (…
dependabot[bot] May 7, 2024
bb3e14b
chore(deps-dev): bump semantic-release from 23.0.8 to 23.1.1 (#63)
dependabot[bot] May 13, 2024
5d4c7c1
chore(deps-dev): bump conventional-changelog-conventionalcommits (#59)
dependabot[bot] May 13, 2024
d1fcae3
chore(deps-dev): bump rimraf from 5.0.5 to 5.0.7 (#62)
dependabot[bot] May 13, 2024
1b6bcbf
chore(deps-dev): bump lint-staged from 15.2.2 to 15.2.5 (#69)
dependabot[bot] May 31, 2024
05fa5ab
chore(deps-dev): bump ts-jest from 29.1.2 to 29.1.3 (#68)
dependabot[bot] Jun 1, 2024
3d1b4a0
chore(deps-dev): bump prettier from 3.2.5 to 3.3.1 (#76)
dependabot[bot] Jun 12, 2024
c33012b
chore(deps-dev): bump @typescript-eslint/parser from 7.8.0 to 7.15.0 …
dependabot[bot] Jul 13, 2024
57dbfdf
chore(deps-dev): bump ts-jest from 29.1.3 to 29.1.5 (#78)
dependabot[bot] Jul 13, 2024
43de31a
chore(deps-dev): bump @typescript-eslint/eslint-plugin (#86)
dependabot[bot] Jul 13, 2024
d4ac8b2
chore(deps-dev): bump typescript from 5.4.5 to 5.5.3 (#90)
dependabot[bot] Jul 15, 2024
89a53fa
chore(deps-dev): bump rimraf from 5.0.7 to 6.0.1 (#88)
dependabot[bot] Aug 5, 2024
39cc343
chore(deps-dev): bump ts-jest from 29.1.5 to 29.2.4 (#95)
dependabot[bot] Aug 5, 2024
d2db3d8
fix(build): do not emit source map (#113)
lsndr Oct 3, 2024
1d5039a
chore(deps-dev): downgrade `conventional-changelog-conventionalcommit…
lsndr Oct 3, 2024
8dc1433
chore(release): 1.2.3-next.1 [skip ci]
semantic-release-bot Oct 3, 2024
de733e5
chore: dont publish internal commits (#116)
lsndr Oct 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
*
!dist/**/*
*.tsbuildinfo
*dist/**/*.map
*.tsbuildinfo
16 changes: 8 additions & 8 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "build", "section": "Build System", "hidden": false },
{ "type": "chore", "section": "Build System", "hidden": false },
{ "type": "chore", "scope": "merge", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": false },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "chore", "scope": "deps", "section": "Build System", "hidden": false },
{ "type": "chore", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
{ "type": "revert", "section": "Reverted Changes", "hidden": false },
{ "type": "style", "section": "Styles", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false }
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "revert", "section": "Reverted Changes", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true }
]
},
"writerOpts": {
Expand Down
Loading