Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #218

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
430 changes: 230 additions & 200 deletions dist/partial.lenses.cjs.js

Large diffs are not rendered by default.

284 changes: 142 additions & 142 deletions dist/partial.lenses.es.js

Large diffs are not rendered by default.

524 changes: 277 additions & 247 deletions dist/partial.lenses.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/partial.lenses.min.js

Large diffs are not rendered by default.

524 changes: 277 additions & 247 deletions docs/partial.lenses.js

Large diffs are not rendered by default.

8,701 changes: 4,250 additions & 4,451 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint": "eslint src test",
"prepare": "concurrently \"npm run lint\" \"npm run docs\" \"npm run dist && npm run test\"",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "nyc mocha && nyc report -r html mocha",
"test": "nyc mocha",
"watch": "concurrently \"npm run watch:dist\" \"npm run watch:docs\" \"npm run watch:test\"",
"watch:dist": "watch-run -d 50 -i -p 'src/**/*.js' npm run dist",
"watch:docs": "concurrently \"watch-run -d 50 -i -p '*.md' npm run docs\" \"livereload docs\"",
Expand Down Expand Up @@ -41,8 +41,11 @@
"infestines": "^0.4.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
Expand All @@ -68,19 +71,17 @@
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"codecov": "^3.1.0",
"concurrently": "^4.1.0",
"eslint": "^5.11.1",
"codecov": "^3.6.1",
"concurrently": "^4.1.2",
"eslint": "^5.16.0",
"klipse-github-docs-generator": "^0.3.8",
"livereload": "^0.7.0",
"livereload": "^0.8.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"nyc": "^14.1.1",
"ramda": "^0.26.1",
"rollup": "^1.0.1",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-uglify": "^6.0.4",
"sprintf-js": "^1.1.2",
"watch-run": "^1.2.5"
}
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import babel from 'rollup-plugin-babel'
import nodeResolve from 'rollup-plugin-node-resolve'
import replace from 'rollup-plugin-replace'
import nodeResolve from '@rollup/plugin-node-resolve'
import replace from '@rollup/plugin-replace'
import {uglify} from 'rollup-plugin-uglify'

const globals = {infestines: 'I'}
Expand Down