Skip to content

Commit c5801b4

Browse files
Merge pull request #23 from p0ise/master
fix case where uglify turns file.key into identifiers when using alias
2 parents 4ce1aee + 2c4e86c commit c5801b4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ module.exports = function (src) {
6262
return acc;
6363
}, {});
6464
var row = {
65-
id: file.key.value,
65+
id: file.key.type === 'Literal'
66+
? file.key.value
67+
: file.key.name,
6668
source: src.slice(start, end),
6769
deps: deps
6870
};

test/files/uglified.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/uglified.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ var fs = require('fs');
88
var src = fs.readFileSync(__dirname + '/files/uglified.js', 'utf8');
99

1010
test('uglified', function (t) {
11-
t.plan(3);
11+
t.plan(4);
1212
t.doesNotThrow(function() {
1313
var p = pack({ raw: true });
1414
var rows = unpack(src);
1515
t.equal(rows.length, 3, 'should unpack 3 rows');
16+
t.ok(rows[2].hasOwnProperty('id'), 'third row should have an id property');
1617
}, 'should not throw');
1718

1819
t.deepEquals(deps(src), ['./foo.js', 'gamma']);

0 commit comments

Comments
 (0)