Browse Source

update a few dependencies

gh-786
Rich-Harris 8 years ago
parent
commit
979cfc25a7
  1. 10
      package.json
  2. 1
      test/function/custom-external-resolver-async/_config.js
  3. 1
      test/function/custom-path-resolver-async/_config.js

10
package.json

@ -49,7 +49,7 @@
"chalk": "^1.1.3",
"codecov.io": "^0.1.6",
"console-group": "^0.3.1",
"eslint": "^2.13.1",
"eslint": "^3.12.2",
"eslint-plugin-import": "^2.2.0",
"is-reference": "^1.0.0",
"istanbul": "^0.4.3",
@ -59,14 +59,14 @@
"mocha": "^3.0.0",
"remap-istanbul": "^0.6.4",
"require-relative": "^0.8.7",
"rollup": "^0.34.0",
"rollup-plugin-buble": "^0.12.1",
"rollup-plugin-commonjs": "^3.0.0",
"rollup": "^0.39.0",
"rollup-plugin-buble": "^0.13.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.0",
"rollup-plugin-string": "^2.0.0",
"sander": "^0.5.1",
"sander": "^0.6.0",
"source-map": "^0.5.6",
"sourcemap-codec": "^1.3.0",
"uglify-js": "^2.6.2"

1
test/function/custom-external-resolver-async/_config.js

@ -1,6 +1,5 @@
var path = require( 'path' );
var assert = require( 'assert' );
var Promise = require( 'sander' ).Promise;
module.exports = {
description: 'uses a custom external path resolver (asynchronous)',

1
test/function/custom-path-resolver-async/_config.js

@ -6,7 +6,6 @@ module.exports = {
options: {
plugins: [{
resolveId: function ( importee, importer ) {
var Promise = require( 'sander' ).Promise;
var resolved;
if ( path.normalize(importee) === path.resolve( __dirname, 'main.js' ) ) return importee;

Loading…
Cancel
Save