Skip to content

Commit

Permalink
. update dependencies
Browse files Browse the repository at this point in the history
- rollup - Downgrade @rollup/plugin-commonjs from 11.1.0 to 11.0.0 to avoid issue rollup/plugins#304 on moment
- rollup - Silent cyclic rollup warnings for module moment.
  • Loading branch information
jeremychone committed May 2, 2020
1 parent 3e1d79b commit 27f4e1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vdev",
"version": "0.11.10",
"version": "0.11.11",
"description": "Kubernetes centric development utilities for high velocity development & deployment (Kubernetes, Docker, Node/TypeScript and web rollup/postcss/typescript).",
"author": "Jeremy Chone <jeremy.chone@gmail.com>",
"main": "dist/main.js",
Expand All @@ -10,14 +10,14 @@
"url": "git://github.com/BriteSnow/node-vdev.git"
},
"dependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-commonjs": "11.0.0",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/js-yaml": "^3.12.3",
"@types/micromatch": "^4.0.1",
"@types/minimist": "^1.2.0",
"autoprefixer": "^9.7.6",
"chokidar": "^3.3.1",
"chokidar": "^3.4.0",
"cloud-bucket": "^0.2.16",
"deepmerge": "^4.2.2",
"fast-glob": "^3.2.2",
Expand All @@ -28,18 +28,18 @@
"micromatch": "^4.0.2",
"minimist": "^1.2.3",
"p-spawn": "^0.5.0",
"postcss": "^7.0.27",
"postcss": "^7.0.28",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"rollup": "^2.6.1",
"rollup": "^2.7.6",
"rollup-plugin-typescript2": "^0.27.0",
"strip-json-comments": "^3.1.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"mocha": "^7.1.0",
"ts-node": "^8.8.2",
"mocha": "^7.1.2",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/processors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export async function rollupFiles(entries: string[], distFile: string, opts: Rol
};

// --------- Exclude 3rd Party circular Dependencies --------- //
const excludeCircularWarningByImporters = ['node_modules/d3'];
const excludeCircularWarningByImporters = ['node_modules/d3', 'node_modules/moment'];
inputOptions.onwarn = function onwarn(warning: any) {
let skip = false;

Expand Down

0 comments on commit 27f4e1f

Please sign in to comment.