-
Notifications
You must be signed in to change notification settings - Fork 27.3k
chore(packages): Updates systemjs package. #3630
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
281cc5d
7cd476c
7d9bff8
fd38b1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,9 @@ | |
| "angular": { | ||
| "version": "1.3.5" | ||
| }, | ||
| "base64-js": { | ||
| "version": "0.0.8" | ||
| }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like Jason forgot to run npm-shrinkwrap in 84463cf // cc @jteplitz602
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry about that. In the future do I just run the shrinkwrap command whenever I modify the dependencies in package.json?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No problems, just follow https://github.com/angular/angular/blob/master/npm-shrinkwrap.readme.md. |
||
| "bower": { | ||
| "version": "1.4.1", | ||
| "dependencies": { | ||
|
|
@@ -1542,9 +1545,6 @@ | |
| "buffer": { | ||
| "version": "3.2.2", | ||
| "dependencies": { | ||
| "base64-js": { | ||
| "version": "0.0.8" | ||
| }, | ||
| "ieee754": { | ||
| "version": "1.1.6" | ||
| }, | ||
|
|
@@ -9926,7 +9926,15 @@ | |
| } | ||
| }, | ||
| "systemjs": { | ||
| "version": "0.9.3" | ||
| "version": "0.18.10", | ||
| "dependencies": { | ||
| "es6-module-loader": { | ||
| "version": "0.17.6" | ||
| }, | ||
| "when": { | ||
| "version": "3.7.3" | ||
| } | ||
| } | ||
| }, | ||
| "systemjs-builder": { | ||
| "version": "0.10.6", | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,17 @@ | |
| <script src="traceur-runtime.js" type="text/javascript"></script> | ||
| <script src="es6-module-loader-sans-promises.src.js" type="text/javascript"></script> | ||
| <script src="system.src.js" type="text/javascript"></script> | ||
| <script src="extension-register.js" type="text/javascript"></script> | ||
| <script src="extension-cjs.js" type="text/javascript"></script> | ||
| <script src="Reflect.js" type="text/javascript"></script> | ||
| <script src="runtime_paths.js" type="text/javascript"></script> | ||
| <script type="text/javascript">System.import('@@FILENAME_NO_EXT').then(function(m) { m.main(); }, console.error.bind(console))</script> | ||
| <script type="text/javascript"> | ||
| var filename = '@@FILENAME_NO_EXT'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not keep the System logic in in |
||
| var parent = filename.split('/'); | ||
| parent = parent.splice(0, parent.length-1).join('/'); | ||
| System.config({ | ||
| baseURL: '/', | ||
| defaultJSExtensions: true, | ||
| paths: { | ||
| 'rx': parent + '/rx.js' | ||
| } | ||
| }); | ||
| System.import(filename).then(function(m) { m.main(); }, console.error.bind(console)); | ||
| </script> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,2 @@ | ||
| importScripts("/examples/src/assets/zone-microtask-web-workers.js", "long-stack-trace-zone.js", | ||
| "traceur-runtime.js", "es6-module-loader-sans-promises.src.js", "system.src.js", | ||
| "extension-register.js", "extension-cjs.js", "Reflect.js", "runtime_paths.js"); | ||
| "traceur-runtime.js", "es6-module-loader-sans-promises.src.js", "system.src.js", "Reflect.js"); |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sweet thanks