@korumite/ts 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yaml +12 -9
- package/LICENSE.org +1 -1
- package/package.json +1 -1
- package/tsconfig.dom.json +4 -1
|
@@ -6,21 +6,24 @@ on:
|
|
|
6
6
|
|
|
7
7
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
8
8
|
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
id-token: write
|
|
12
|
+
issues: write
|
|
13
|
+
pull-requests: write
|
|
14
|
+
|
|
9
15
|
jobs:
|
|
10
16
|
publish:
|
|
11
17
|
name: Publish
|
|
12
18
|
runs-on: ubuntu-latest
|
|
13
|
-
permissions:
|
|
14
|
-
contents: write # Allow publishing a GitHub release
|
|
15
|
-
id-token: write # Allow OIDC for npm provenance
|
|
16
|
-
issues: write # Allow commenting on released issues
|
|
17
|
-
pull-requests: write # Allow commenting on released pull requests
|
|
18
19
|
steps:
|
|
19
|
-
-
|
|
20
|
-
|
|
20
|
+
- name: Checkout repository
|
|
21
|
+
uses: actions/checkout@v6
|
|
22
|
+
- name: Set up Node
|
|
23
|
+
uses: actions/setup-node@v4
|
|
21
24
|
with:
|
|
22
25
|
node-version: lts/*
|
|
23
|
-
-
|
|
26
|
+
- name: Deploy semantic release
|
|
24
27
|
env:
|
|
25
28
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
26
|
-
|
|
29
|
+
run: npx semantic-release
|
package/LICENSE.org
CHANGED
package/package.json
CHANGED
package/tsconfig.dom.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"esModuleInterop": true,
|
|
4
|
+
"incremental": true,
|
|
4
5
|
"isolatedModules": true,
|
|
5
6
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
6
|
-
"module": "
|
|
7
|
+
"module": "esnext",
|
|
7
8
|
"moduleDetection": "force",
|
|
9
|
+
"moduleResolution": "bundler",
|
|
10
|
+
"noEmit": true,
|
|
8
11
|
"noImplicitOverride": true,
|
|
9
12
|
"noUncheckedIndexedAccess": true,
|
|
10
13
|
"resolveJsonModule": true,
|