Skip to content

Commit f7bc8b4

Browse files
authored
Feat: v3.0.0 + HighlightJS v11 Support (#3)
* fix(solidity): natspec supports * feat(highlightjs): v11 upgrade * refactor(highlightjs): assembly support and tests * refactor(solidity): cleanup * refactor(highlightjs): v11 upgrade * feat(release): v3.0.0
1 parent 0108133 commit f7bc8b4

File tree

10 files changed

+8607
-2766
lines changed

10 files changed

+8607
-2766
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
node_modules/
2+
.DS_Store
3+
cache/
4+
coverage/
5+
tmp/
6+
dist/
7+
*.zip
8+
*.tgz
9+
*.tar.gz

jest.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// jest.config.js
2+
export default {
3+
transform: {},
4+
moduleNameMapper: {
5+
'^(\\.{1,2}/.*)\\.js$': '$1'
6+
},
7+
testEnvironment: 'node',
8+
testMatch: ['**/*.test.js', '**/test.js'],
9+
verbose: true
10+
};

0 commit comments

Comments
 (0)