From 5983935f843e85575cd54e12dc2f4eeff88e2a5a Mon Sep 17 00:00:00 2001 From: Joxit Date: Sat, 31 Dec 2022 10:49:12 +0100 Subject: [PATCH] ci: fix npm dependencies for node v16 --- package.json | 16 +++++++--------- rollup.config.js | 2 +- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 2e82d096..1335f22f 100644 --- a/package.json +++ b/package.json @@ -19,29 +19,27 @@ "license": "AGPL-3.0", "description": "A web UI for private docker registry", "devDependencies": { - "@babel/core": "^7.20.5", + "@babel/core": "^7.20.7", "@babel/preset-env": "^7.20.2", "@riotjs/compiler": "^6.4.2", "@riotjs/observable": "^4.1.1", "@riotjs/route": "^8.0.2", "@rollup/plugin-babel": "^6.0.3", - "@rollup/plugin-commonjs": "^23.0.3", + "@rollup/plugin-commonjs": "^24.0.0", "@rollup/plugin-html": "^1.0.1", - "@rollup/plugin-json": "^5.0.2", + "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", - "core-js": "^3.26.1", + "core-js": "^3.27.1", "node-sass": "^8.0.0", - "prettier": "^2.8.0", + "prettier": "^2.8.1", "riot": "^7.1.0", "riot-mui": "github:joxit/riot-5-mui#a9b0ce4", - "rollup": "^3.5.1", + "rollup": "^3.9.0", "rollup-plugin-app-utils": "^1.0.6", - "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-copy": "^3.4.0", "rollup-plugin-riot": "^6.0.0", "rollup-plugin-scss": "^4.0.0", "rollup-plugin-serve": "^2.0.2", - "rollup-plugin-styles": "^4.0.0", - "rollup-plugin-terser": "^7.0.2" + "@rollup/plugin-terser": "^0.2.1" } } diff --git a/rollup.config.js b/rollup.config.js index 547eb508..9ce92704 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,7 +1,7 @@ import riot from 'rollup-plugin-riot'; import nodeResolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; import { emptyDirectories } from 'rollup-plugin-app-utils'; import { babel } from '@rollup/plugin-babel'; import scss from 'rollup-plugin-scss';