From b24c0e2738d2f730c2fb854cd88485fbb024851a Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 23 Sep 2015 15:39:13 -0400 Subject: [PATCH] oops linux is case sensitive --- src/Module.js | 2 +- src/rollup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module.js b/src/Module.js index c017ad5..a32c021 100644 --- a/src/Module.js +++ b/src/Module.js @@ -6,7 +6,7 @@ import walk from './ast/walk'; import { blank, keys } from './utils/object'; import getLocation from './utils/getLocation'; import makeLegalIdentifier from './utils/makeLegalIdentifier'; -import SOURCEMAPPING_URL from './utils/sourceMappingUrl'; +import SOURCEMAPPING_URL from './utils/sourceMappingURL'; function isEmptyExportedVarDeclaration ( node, exports, toExport ) { if ( node.type !== 'VariableDeclaration' || node.declarations[0].init ) return false; diff --git a/src/rollup.js b/src/rollup.js index 018edf6..e4d3db2 100644 --- a/src/rollup.js +++ b/src/rollup.js @@ -1,7 +1,7 @@ import { basename } from './utils/path'; import { writeFile } from 'sander'; import { keys } from './utils/object'; -import SOURCEMAPPING_URL from './utils/sourceMappingUrl'; +import SOURCEMAPPING_URL from './utils/sourceMappingURL'; import Bundle from './Bundle'; export function rollup ( options ) {