Skip to content

Commit

Permalink
Update dependencies 20230217 (#82)
Browse files Browse the repository at this point in the history
* update dependencies to latest

* fix rollup build setup
  • Loading branch information
planttheidea authored Feb 18, 2023
1 parent 74dca1d commit 683e074
Show file tree
Hide file tree
Showing 8 changed files with 1,233 additions and 1,157 deletions.
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,39 @@
},
"description": "A blazing fast deep object copier",
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.1.1",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.0",
"@types/ramda": "^0.28.15",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint": "^8.21.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.0",
"@types/ramda": "^0.28.23",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"benchee": "^1.0.3",
"cli-table3": "^0.6.3",
"clone": "^2.1.2",
"deepclone": "^1.0.2",
"eslint": "^8.24.0",
"eslint-webpack-plugin": "^3.2.0",
"eslint": "^8.34.0",
"eslint-webpack-plugin": "^4.0.0",
"fast-clone": "^1.5.3",
"html-webpack-plugin": "^5.5.0",
"in-publish": "^2.0.1",
"jest": "^29.1.2",
"jest": "^29.4.3",
"lodash": "^4.17.11",
"nyc": "^15.1.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "15.4.3",
"rollup": "^2.79.1",
"release-it": "15.6.0",
"rollup": "^3.16.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion rollup/config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import typescript from '@rollup/plugin-typescript';
import path from 'path';
import tsc from 'typescript';
import { fileURLToPath } from 'url';
import pkg from '../package.json';
import pkg from './packageJson.js';

const ROOT = fileURLToPath(new URL('..', import.meta.url));

Expand Down
4 changes: 2 additions & 2 deletions rollup/config.cjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import baseConfig from './config.base';
import pkg from '../package.json';
import baseConfig from './config.base.js';
import pkg from './packageJson.js';

export default {
...baseConfig,
Expand Down
4 changes: 2 additions & 2 deletions rollup/config.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import baseConfig from './config.base';
import pkg from '../package.json';
import baseConfig from './config.base.js';
import pkg from './packageJson.js';

export default {
...baseConfig,
Expand Down
4 changes: 2 additions & 2 deletions rollup/config.min.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import baseConfig from './config.base';
import baseConfig from './config.base.js';
import { terser } from 'rollup-plugin-terser';
import pkg from '../package.json';
import pkg from './packageJson.js';

export default {
...baseConfig,
Expand Down
4 changes: 2 additions & 2 deletions rollup/config.umd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import baseConfig from './config.base';
import pkg from '../package.json';
import baseConfig from './config.base.js';
import pkg from './packageJson.js';

export default {
...baseConfig,
Expand Down
6 changes: 6 additions & 0 deletions rollup/packageJson.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { readFileSync } from 'fs';
import { join } from 'path';

export default JSON.parse(
readFileSync(join(process.cwd(), 'package.json'), { encoding: 'utf8' })
);
Loading

0 comments on commit 683e074

Please sign in to comment.