Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen Van Ginkel committed May 15, 2020
1 parent b0edc94 commit aa04bf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@metrichor/jmespath",
"description": "Typescript implementation of the JMESPath spec (100% compliant)",
"version": "0.1.0",
"version": "0.1.1",
"author": {
"name": "Oxford Nanopore Technologies",
"email": "[email protected]",
"url": "https://nanoporetech.com"
},
"main": "dist/jmespath.cjs.js",
"main": "dist/jmespath.umd.js",
"module": "dist/jmespath.esm.js",
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
input: `src/index.ts`,
output: [
{ file: pkg.main, name: libraryName, format: 'umd', exports: 'named', sourcemap: true },
{ file: pkg.module, format: 'es', exports: 'named', sourcemap: true },
{ file: pkg.module, format: 'esm', exports: 'named', sourcemap: true },
],
// Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash')
external: [],
Expand Down

0 comments on commit aa04bf4

Please sign in to comment.