Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jul 23, 2023
1 parent ab0c7c7 commit 35f73b4
Show file tree
Hide file tree
Showing 3 changed files with 354 additions and 365 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iter-ops",
"version": "3.0.8",
"version": "3.1.0",
"description": "Basic operations on iterables",
"keywords": [
"typescript",
Expand Down Expand Up @@ -66,30 +66,30 @@
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.2",
"@types/chai": "4.3.5",
"@types/estree": "1.0.1",
"@types/mocha": "10.0.1",
"@types/node": "20.4.1",
"@types/node": "20.4.4",
"@types/rollup-plugin-auto-external": "2.0.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"chai": "4.3.7",
"cross-env": "7.0.3",
"cspell": "6.31.1",
"eslint": "8.44.0",
"cspell": "6.31.2",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
"rimraf": "5.0.1",
"rollup": "2.79.1",
"rollup": "3.26.3",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-gzip": "3.1.0",
"rollup-plugin-terser": "6.1.0",
"ts-node": "10.9.1",
"tsd": "0.28.1",
"tslib": "2.6.0",
Expand Down
8 changes: 4 additions & 4 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import rollupPluginNodeResolve from '@rollup/plugin-node-resolve';
import rollupPluginTypescript from '@rollup/plugin-typescript';
import rollupPluginAutoExternal from 'rollup-plugin-auto-external';
import rollupPluginDts from 'rollup-plugin-dts';
import {terser as rollupPluginTerser} from 'rollup-plugin-terser';
import rollupPluginTerser from '@rollup/plugin-terser';
import rollupPluginGzip from 'rollup-plugin-gzip';

import pkg from './package.json';
import pkg from './package.json' assert {type: 'json'};

const common = {
input: 'src/index.ts',
Expand Down Expand Up @@ -114,7 +114,7 @@ const web = {
plugins: [
...getPlugins('tsconfig.build.web.json'),
rollupPluginTerser({
output: {
format: {
comments: 'some'
}
}),
Expand All @@ -137,7 +137,7 @@ const webModule = {
plugins: [
...getPlugins('tsconfig.build.web.json'),
rollupPluginTerser({
output: {
format: {
comments: 'some'
}
}),
Expand Down

0 comments on commit 35f73b4

Please sign in to comment.