Skip to content

Commit c9efd48

Browse files
committed
Add handling of default exports #1
1 parent d54f828 commit c9efd48

File tree

14 files changed

+9467
-794
lines changed

14 files changed

+9467
-794
lines changed

.github/workflows/release-open-vsx.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
registry-url: https://registry.npmjs.org/
1919

2020
- name: Install the dependencies
21-
run: npm i
21+
run: npm ci
22+
23+
- name: Test
24+
run: npm test
2225

2326
- name: Publish
2427
run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }}

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ out/test/**
44
src/**
55
.gitignore
66
vsc-extension-quickstart.md
7+
jest.config.js
78
**/tsconfig.json
89
**/tslint.json
910
**/*.map

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [2.10.0] 22-07-2024
4+
5+
- [#1](https://github.com/estruyf/vscode-typescript-exportallmodules/issues/1): Add support for default named exports
6+
37
## [2.9.2] 22-07-2024
48

59
- [#33](https://github.com/estruyf/vscode-typescript-exportallmodules/issues/33): Fix enum named export

jest.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/** @type {import('ts-jest').JestConfigWithTsJest} */
2+
module.exports = {
3+
preset: 'ts-jest',
4+
testEnvironment: 'node',
5+
rootDir: "./src",
6+
testMatch: ['**/*.test.ts'],
7+
};

0 commit comments

Comments
 (0)