diff options
| author | Chris Rebert <[email protected]> | 2015-10-01 10:30:56 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-10-01 10:30:56 -0700 |
| commit | 472cb85b82e1a9c87b1a5aea9c692a4883b5000a (patch) | |
| tree | 3591eb8642e4a1a6cee86fed00fc8a9524ef8c7d | |
| parent | f66d1631f59d88994a2d9fc1f8599ce143572bb0 (diff) | |
| parent | 1ba4577cc6786c15a86cabb5dff719febc7c9b15 (diff) | |
| download | bootstrap-472cb85b82e1a9c87b1a5aea9c692a4883b5000a.tar.xz bootstrap-472cb85b82e1a9c87b1a5aea9c692a4883b5000a.zip | |
Merge pull request #17270 from jdanyow/patch-1
Update jspm package configuration
| -rw-r--r-- | package.json | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/package.json b/package.json index fdd09f5a4..17cb245da 100644 --- a/package.json +++ b/package.json @@ -79,16 +79,18 @@ ], "jspm": { "main": "js/bootstrap", + "ignore": ["dist/js/npm"], + "directories": { + "lib": "dist" + }, "shim": { "js/bootstrap": { - "deps": "jquery", + "deps": ["jquery"], "exports": "$" } }, - "files": [ - "css", - "fonts", - "js" - ] + "dependencies": { + "jquery": "*" + } } } |
