diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59ec614..45021b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Update CHANGELOG.md - uses: 'zen8sol/update-changelog-action@0.1.3' + uses: 'zen8sol/update-changelog-action@0.1.4' with: newVersion: '${{ env.NEW_VERSION }}' diff --git a/.gitignore b/.gitignore index 777f552..a1f7e60 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ coverage *.log .yalc/** .jestrc.json -.swcrc yalc.lock /test/tmp/** diff --git a/.swcrc b/.swcrc new file mode 100644 index 0000000..83cbba4 --- /dev/null +++ b/.swcrc @@ -0,0 +1,32 @@ +{ + "$schema": "https://json.schemastore.org/swcrc", + "sourceMaps": true, + "module": { + "type": "commonjs", + "lazy": true, + "noInterop": false + + }, + "jsc": { + "target": "es2022", + "keepClassNames": true, + "parser": { + "syntax": "typescript", + "decorators": true, + "dynamicImport": true, + "noEarlyErrors": true + }, + "transform": { + "legacyDecorator": false, + "decoratorMetadata": true, + "useDefineForClassFields": true + }, + "baseUrl": "./", + "paths": { + "@": ["src"], + "@/*": ["src/*"], + "@test/*": ["test/helper/*"] + } + }, + "minify": false +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index dda3cfc..e896e4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,7 +25,7 @@ "paths": { "@": ["src"], "@/*": ["src/*"], - "@test/*": ["test/helper/*"], + "@test/*": ["test/helper/*"] }, },