Skip to content

Commit

Permalink
Fix missing dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen Van Ginkel committed Jul 20, 2020
1 parent d9d1a54 commit 8b90447
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 35 deletions.
27 changes: 0 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"rimraf": "^3.0.2",
"rollup": "^2.22.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"semantic-release": "^17.1.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.3",
Expand Down
16 changes: 8 additions & 8 deletions rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import sourceMaps from 'rollup-plugin-sourcemaps'
import typescript from '@rollup/plugin-typescript'
import json from '@rollup/plugin-json'
import { terser } from "rollup-plugin-terser";
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import sourceMaps from 'rollup-plugin-sourcemaps';
import typescript from '@rollup/plugin-typescript';
import json from '@rollup/plugin-json';
import { terser } from 'rollup-plugin-terser';

const pkg = require('./package.json')
const pkg = require('./package.json');

const libraryName = 'jmespath'
const libraryName = 'jmespath';

export default {
input: `src/index.ts`,
Expand Down

0 comments on commit 8b90447

Please sign in to comment.