Skip to content

Commit

Permalink
Updated depdendencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferbaxter committed Jun 1, 2020
1 parent eb739a2 commit 14b635e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions config/rollup.plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import babel from 'rollup-plugin-babel';
import MagicString from 'magic-string';
import fs from 'fs';
import path from 'path';
import * as path from 'path';
const walk = require('acorn-walk');

/**
Expand Down Expand Up @@ -88,7 +88,7 @@ export function removeDebugCommandExecutors() {
buildStart(options) {
context = this;
toDiscover = fs
.readdirSync(path.join(path.dirname(options.input), 'commands'))
.readdirSync(path.join(path.dirname(options.input[0]), 'commands'))
.filter((file) => path.extname(file) !== '.map' && path.basename(file, '.js') !== 'interface').length;
},
renderChunk(code) {
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
"files": [
"dist"
],
"syntax": {
"esmodules": "dist/main.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/ampproject/worker-dom.git"
Expand Down Expand Up @@ -40,40 +37,40 @@
"prepublishOnly": "npm-run-all clean build"
},
"devDependencies": {
"@ampproject/filesize": "3.2.1",
"@ampproject/rollup-plugin-closure-compiler": "0.25.2",
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/preset-env": "7.9.5",
"@rollup/plugin-replace": "2.3.1",
"@types/node": "13.11.1",
"@types/sinon": "9.0.0",
"@ampproject/filesize": "4.2.0",
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/preset-env": "7.10.2",
"@rollup/plugin-replace": "2.3.2",
"@types/node": "14.0.6",
"@types/sinon": "9.0.4",
"acorn": "7.2.0",
"acorn-walk": "7.1.1",
"ava": "3.7.0",
"ava": "3.8.2",
"babel-plugin-minify-replace": "0.5.0",
"babel-plugin-transform-remove-console": "6.9.4",
"cross-env": "7.0.2",
"esm": "3.2.25",
"husky": "4.2.5",
"jsdom": "16.2.2",
"lint-staged": "10.1.3",
"lint-staged": "10.2.7",
"magic-string": "0.25.7",
"np": "https://github.com/pixelastic/np/tarball/c3ab2e3b053c7da0ce40a572ca1616273ac080f8",
"npm-run-all": "4.1.5",
"polka": "0.5.2",
"prettier": "2.0.4",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.6.1",
"rollup": "2.12.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-terser": "5.3.0",
"rollup-plugin-terser": "6.1.0",
"sinon": "9.0.2",
"sirv": "0.4.2",
"tslint": "6.1.1",
"typescript": "3.8.3"
"sirv": "0.4.6",
"tslint": "6.1.2",
"typescript": "3.9.3"
},
"lint-staged": {
"*.{js,ts}": [
Expand All @@ -87,7 +84,10 @@
}
},
"filesize": {
"track": ["./dist/**/*.js", "./dist/**/*.mjs"],
"track": [
"./dist/**/*.js",
"./dist/**/*.mjs"
],
"./dist/worker/worker.mjs": {
"brotli": "11.4 kB"
},
Expand All @@ -113,7 +113,7 @@
]
},
"volta": {
"node": "12.16.2",
"node": "14.3.0",
"yarn": "1.22.4"
},
"publishConfig": {
Expand Down

0 comments on commit 14b635e

Please sign in to comment.