Skip to content

Commit 5a6fb84

Browse files
committed
Merge remote-tracking branch 'makenew/public'
2 parents d27c7e5 + 3461b4f commit 5a6fb84

File tree

9 files changed

+670
-557
lines changed

9 files changed

+670
-557
lines changed

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Package
3232
run: npm pack
3333
- name: Upload artifact
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: build-${{ github.sha }}
3737
if-no-files-found: error

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
install_dependencies: 'false'
3232
- name: Download artifact
33-
uses: actions/download-artifact@v3
33+
uses: actions/download-artifact@v4
3434
with:
3535
name: ${{ inputs.artifact_name }}
3636
path: .

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
node-version: ${{ matrix.node }}
8080
- name: Download artifact
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4
8282
with:
8383
name: ${{ needs.build.outputs.artifact_name }}
8484
path: .

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525
- name: Download artifact
26-
uses: actions/download-artifact@v3
26+
uses: actions/download-artifact@v4
2727
with:
2828
name: ${{ needs.build.outputs.artifact_name }}
2929
path: .

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
runs-on: ubuntu-latest
3636
timeout-minutes: 30
3737
needs: semantic
38-
if: ${{ needs.semantic.outputs.new_release_published == 'true' }}
38+
if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0'
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v4
4242
with:
4343
fetch-depth: 1
44-
- name: Release version ${{ steps.release.outputs.new_release_version }} on ${{ github.ref_name }}
44+
- name: Release version ${{ needs.semantic.outputs.new_release_version }} on ${{ github.ref_name }}
4545
run: gh workflow run version.yml --raw-field version=$VERSION --ref $BRANCH
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

package-lock.json

Lines changed: 660 additions & 549 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"eslint-config-prettier": "^9.0.0",
7878
"eslint-config-standard": "^17.1.0",
7979
"eslint-config-standard-with-typescript": "^43.0.0",
80-
"eslint-plugin-simple-import-sort": "^10.0.0",
80+
"eslint-plugin-simple-import-sort": "^12.0.0",
8181
"eslint-plugin-unused-imports": "^3.0.0",
8282
"landlubber": "^1.0.0",
8383
"prettier": "^3.0.0",

tsconfig.build.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "./tsconfig.json",
44
"compilerOptions": {
5+
"composite": false,
6+
"declaration": true,
57
"noEmit": false,
68
"noEmitOnError": true,
79
"rootDir": "./src",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"compilerOptions": {
4+
"composite": true,
45
"noEmit": true,
56
"strict": true,
67
"module": "nodenext",
78
"esModuleInterop": true,
89
"target": "es2021",
910
"jsx": "react-jsx",
10-
"declaration": true,
1111
"sourceMap": true,
1212
"newLine": "lf",
1313
"verbatimModuleSyntax": true,

0 commit comments

Comments
 (0)