Skip to content

Commit

Permalink
Merge pull request #112 from xpadev-net/fix/rollup-error
Browse files Browse the repository at this point in the history
[修正] nodeバージョンの更新
  • Loading branch information
xpadev-net authored Nov 19, 2024
2 parents ca5b299 + 22b279c commit 5e97b68
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
registry-url: https://registry.npmjs.org
always-auth: true
scope: '@xpadev-net'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: setup Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
registry-url: "https://registry.npmjs.org"
# Runs a single command using the runners shell
- name: init
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.dts.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
import dts from "rollup-plugin-dts";
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import babel from "@rollup/plugin-babel";
import typescript from "@rollup/plugin-typescript";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
const banner = `/*!
Expand Down

0 comments on commit 5e97b68

Please sign in to comment.