Skip to content

Commit

Permalink
chore: Update deps, bump minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Apr 21, 2023
1 parent 67e2884 commit 000ef3c
Show file tree
Hide file tree
Showing 3 changed files with 554 additions and 375 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arquero",
"version": "5.1.0",
"version": "5.2.0",
"description": "Query processing and transformation of array-backed data tables.",
"keywords": [
"data",
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c",
"build": "rollup -c rollup.config.mjs",
"postbuild": "tsc",
"preperf": "yarn build",
"perf": "TZ=America/Los_Angeles tape 'perf/**/*-perf.js'",
Expand All @@ -37,21 +37,21 @@
"prepublishOnly": "yarn test && yarn lint && yarn build"
},
"dependencies": {
"acorn": "^8.8.0",
"apache-arrow": "^9.0.0",
"acorn": "^8.8.2",
"apache-arrow": "^11.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.21.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"eslint": "^8.39.0",
"esm": "^3.2.25",
"rimraf": "^3.0.2",
"rollup": "^2.77.3",
"rimraf": "^5.0.0",
"rollup": "^3.20.7",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.5.3",
"typescript": "^4.7.4"
"tape": "^5.6.3",
"typescript": "^5.0.4"
},
"esm": {
"force": true,
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js → rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json from '@rollup/plugin-json';
import bundleSize from 'rollup-plugin-bundle-size';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';

function onwarn(warning, defaultHandler) {
if (warning.code !== 'CIRCULAR_DEPENDENCY') {
Expand Down
Loading

0 comments on commit 000ef3c

Please sign in to comment.