forked from thlorenz/doctoc
-
-
Notifications
You must be signed in to change notification settings - Fork 1
release: v2.5.0 #73
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
Merged
Merged
release: v2.5.0 #73
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e9ccac3
chore: update npm dependencies
technote-space 1ec2790
feat: update package version
technote-space d7974d6
chore: update npm dependencies
technote-space 43f59e1
chore: update npm dependencies
technote-space 27fb6af
chore: update npm dependencies
technote-space a662e38
chore: update npm dependencies
technote-space c4c297c
chore: update npm dependencies
technote-space 00b05ca
chore: update npm dependencies
technote-space d4366db
chore: update npm dependencies
technote-space c2556a2
chore: update npm dependencies
technote-space 8541c85
chore: update npm dependencies
technote-space dd18125
chore: update npm dependencies
technote-space 9108f44
chore: update npm dependencies
technote-space a795768
Merge remote-tracking branch 'origin/main' into release/next-v2.4.23
technote-space 1a67a91
feat: use vitest
technote-space 0f70d72
chore: tweaks
technote-space c968411
chore: import order
technote-space 4855ceb
chore: use type import
technote-space 181dac5
feat: use rollup
technote-space 8fdcb23
feat: update package version
technote-space File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/.idea | ||
/node_modules | ||
/coverage | ||
/build | ||
/dist | ||
.eslintcache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
/* eslint-disable no-magic-numbers */ | ||
import {replaceVariables} from '../src/lib/utils'; | ||
import { describe, expect, it } from 'vitest'; | ||
import { replaceVariables } from '../src/lib/utils'; | ||
|
||
describe('replaceVariables', () => { | ||
it('should replace variables', () => { | ||
expect(replaceVariables('', [])).toBe(''); | ||
expect(replaceVariables('abc/${test1}/${test2}/${test1}/xyz', [ | ||
{key: 'test1', replace: '1'}, | ||
{key: 'test3', replace: '3'}, | ||
{ key: 'test1', replace: '1' }, | ||
{ key: 'test3', replace: '3' }, | ||
])).toBe('abc/1/${test2}/1/xyz'); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
specifically, adding "exports" is ALWAYS a breaking change, and this particular form makes the package ESM-only. This part of v2.5 must be reverted, and published as a v2.5.1.
(Note that "exports" replaces
main
, it doesn't work with it in concert)