Skip to content

Commit 6284000

Browse files
committed
2.1.10
1 parent 367badb commit 6284000

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "steal",
33
"description": "Gets JavaScript.",
4-
"version": "2.1.9",
4+
"version": "2.1.10",
55
"author": {
66
"name": "Bitovi",
77
"email": "[email protected]",

steal-with-promises.production.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

steal.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2639,9 +2639,9 @@ function core(loader) {
26392639
* load.metadata.some = 'meta' will now be set on the load record.
26402640
*
26412641
* The same meta could be set with a my/module.js file containing:
2642-
*
2642+
*
26432643
* my/module.js
2644-
* "some meta";
2644+
* "some meta";
26452645
* "another meta";
26462646
* console.log('this is my/module');
26472647
*
@@ -2661,7 +2661,7 @@ function core(loader) {
26612661
*
26622662
* "format amd";
26632663
* define(...);
2664-
*
2664+
*
26652665
*/
26662666

26672667
function meta(loader) {
@@ -2698,7 +2698,7 @@ function meta(loader) {
26982698
var firstChar = metaParts[i].substr(0, 1);
26992699
if (metaParts[i].substr(len - 1, 1) == ';')
27002700
len--;
2701-
2701+
27022702
if (firstChar != '"' && firstChar != "'")
27032703
continue;
27042704

@@ -2717,7 +2717,7 @@ function meta(loader) {
27172717
}
27182718
// config meta overrides
27192719
setConfigMeta(this, load);
2720-
2720+
27212721
return loaderTranslate.call(this, load);
27222722
}
27232723
}
@@ -4541,10 +4541,10 @@ function bundles(loader) {
45414541

45424542
/*
45434543
* Dependency Tree Cache
4544-
*
4545-
* Allows a build to pre-populate a dependency trace tree on the loader of
4544+
*
4545+
* Allows a build to pre-populate a dependency trace tree on the loader of
45464546
* the expected dependency tree, to be loaded upfront when requesting the
4547-
* module, avoinding the n round trips latency of module loading, where
4547+
* module, avoinding the n round trips latency of module loading, where
45484548
* n is the dependency tree depth.
45494549
*
45504550
* eg:
@@ -4553,8 +4553,8 @@ function bundles(loader) {
45534553
* 'normalized': ['another'],
45544554
* 'deps': ['tree']
45554555
* };
4556-
*
4557-
* System.import('app')
4556+
*
4557+
* System.import('app')
45584558
* // simultaneously starts loading all of:
45594559
* // 'normalized', 'deps', 'another', 'tree'
45604560
* // before "app" source is even loaded
@@ -4581,7 +4581,7 @@ function depCache(loader) {
45814581
return loaderLocate.call(loader, load);
45824582
}
45834583
}
4584-
4584+
45854585

45864586
core(System);
45874587
meta(System);

steal.production.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/steal-with-promises.production.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)