diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f34f00..cbc60ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - name: Set node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: lts/* - run: npx changelogithub env: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 73cf2f3..a4e122f 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -14,7 +14,7 @@ jobs: - name: Set node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: lts/* - name: Setup run: npm i -g @antfu/ni @@ -31,7 +31,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node: [14.19.0, 16.x, 18] + node: [16, 18] fail-fast: false steps: diff --git a/LICENSE b/LICENSE index 8e4b50c..e3df341 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright © 2022 三咲智子 (https://github.com/sxzz) +Copyright © 2022-PRESENT 三咲智子 (https://github.com/sxzz) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 294fb91..2367f13 100644 --- a/README.md +++ b/README.md @@ -46,4 +46,4 @@ Thanks to [esbuild-plugin-pipe](https://github.com/nativew/esbuild-plugin-pipe) ## License -[MIT](./LICENSE) License © 2022 [三咲智子](https://github.com/sxzz) +[MIT](./LICENSE) License © 2022-PRESENT [三咲智子](https://github.com/sxzz) diff --git a/tsup.config.ts b/tsup.config.ts index 5bdedc0..81d9858 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup' export default defineConfig({ entry: ['./src/index.ts'], format: ['cjs', 'esm'], - target: 'node14', + target: 'node16.14', clean: true, dts: true, })