@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.
@@ -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
- - uses: actions/checkout@v4
20
- - uses: actions/setup-node@v4
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
- - run: npx semantic-release
26
+ - name: Deploy semantic release
24
27
  env:
25
28
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
29
+ run: npx semantic-release
package/LICENSE.org CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Mathieu Marques
3
+ Copyright (c) 2024 Mathieu Marques
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
package/package.json CHANGED
@@ -11,5 +11,5 @@
11
11
  "type": "git",
12
12
  "url": "git+https://github.com/angrybacon/ts.git"
13
13
  },
14
- "version": "1.1.0"
14
+ "version": "1.2.0"
15
15
  }
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": "nodenext",
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,