mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
10 changed files with 12 additions and 12 deletions
@ -1,6 +1,6 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'external paths (#754)', |
description: 'external paths (#754)', |
||||
options: { |
options: { |
||||
paths: id => `https://npmcdn.com/${id}` |
paths: id => `https://unpkg.com/${id}` |
||||
} |
} |
||||
}; |
}; |
||||
|
@ -1,3 +1,3 @@ |
|||||
import foo from 'https://npmcdn.com/foo'; |
import foo from 'https://unpkg.com/foo'; |
||||
|
|
||||
assert.equal( foo, 42 ); |
assert.equal( foo, 42 ); |
||||
|
@ -1,3 +1,3 @@ |
|||||
import foo from 'https://npmcdn.com/foo'; |
import foo from 'https://unpkg.com/foo'; |
||||
|
|
||||
assert.equal( foo, 42 ); |
assert.equal( foo, 42 ); |
||||
|
Loading…
Reference in new issue