Skip to content

Commit 97ee2e5

Browse files
committed
map is for module IDs, not paths.
1 parent 4849057 commit 97ee2e5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

client.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
],
1616
map: {
1717
intern: {
18-
dojo: basePath + 'node_modules/dojo',
19-
chai: basePath + 'node_modules/chai/chai'
18+
dojo: 'intern/node_modules/dojo',
19+
chai: 'intern/node_modules/chai/chai'
2020
}
2121
}
2222
}, [ 'intern/client' ]);

client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if (typeof process !== 'undefined' && typeof define === 'undefined') {
1212
],
1313
map: {
1414
intern: {
15-
dojo: pathUtils.resolve(basePath, 'node_modules', 'dojo'),
16-
chai: pathUtils.resolve(basePath, 'node_modules', 'chai', 'chai')
15+
dojo: 'intern/node_modules/dojo',
16+
chai: 'intern/node_modules/chai/chai'
1717
}
1818
}
1919
}, [ 'intern/client' ]);

runner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if (typeof process !== 'undefined' && typeof define === 'undefined') {
1212
],
1313
map: {
1414
intern: {
15-
dojo: pathUtils.resolve(basePath, 'node_modules', 'dojo'),
16-
chai: pathUtils.resolve(basePath, 'node_modules', 'chai', 'chai')
15+
dojo: 'intern/node_modules/dojo',
16+
chai: 'intern/node_modules/chai/chai'
1717
}
1818
}
1919
}, [ 'intern/runner' ]);

0 commit comments

Comments
 (0)