Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
elchininet committed Nov 24, 2023
1 parent 2e11756 commit 4042627
Show file tree
Hide file tree
Showing 6 changed files with 1,088 additions and 752 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
container:
image: node:16
image: node:18
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set-up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- name: Publish
Expand All @@ -27,7 +27,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v3
uses: mikepenz/release-changelog-builder-action@v4
with:
configurationJson: |
{
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: node:16
image: node:18
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile --ignore-scripts --prefer-offline
Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/bundle.js

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,32 +64,32 @@
},
"homepage": "https://github.com/elchininet/ColorTranslator#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint": "^8.54.0",
"google-code-prettify": "^1.0.5",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.6.1",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"plop": "^3.1.2",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"plop": "^4.0.0",
"rimraf": "^5.0.5",
"rollup": "^4.5.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.2.0",
"rollup-plugin-ts": "^3.4.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"whatwg-fetch": "^3.6.16"
"whatwg-fetch": "^3.6.19"
}
}
2 changes: 1 addition & 1 deletion scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh

RIMRAF="./node_modules/rimraf/dist/cjs/src/bin.js"
RIMRAF="./node_modules/rimraf/dist/esm/bin.mjs"

$RIMRAF dist/
$RIMRAF esm/
Expand Down
Loading

0 comments on commit 4042627

Please sign in to comment.