Skip to content

Commit

Permalink
1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Jul 3, 2017
1 parent 5e35152 commit f988df2
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "steal",
"main": "steal.js",
"version": "1.5.4",
"version": "1.5.5",
"ignore": [
"test",
"src",
Expand Down
2 changes: 1 addition & 1 deletion main.js
Expand Up @@ -460,7 +460,7 @@ addStealExtension(function (loader) {
if (definer) {
var localName = name + '/' + parentName;

if(!loader.has(name)) {
if(!loader.has(localName)) {
// `definer` could be a function or could be a moduleName
if (typeof definer === 'string') {
definer = pluginLoader['import'](definer);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "steal",
"description": "Gets JavaScript.",
"version": "1.5.4",
"version": "1.5.5",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
Expand Down
2 changes: 1 addition & 1 deletion steal-sans-promises.js
Expand Up @@ -4761,7 +4761,7 @@ addStealExtension(function (loader) {
if (definer) {
var localName = name + '/' + parentName;

if(!loader.has(name)) {
if(!loader.has(localName)) {
// `definer` could be a function or could be a moduleName
if (typeof definer === 'string') {
definer = pluginLoader['import'](definer);
Expand Down
4 changes: 2 additions & 2 deletions steal-sans-promises.production.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion steal.js
Expand Up @@ -6031,7 +6031,7 @@ addStealExtension(function (loader) {
if (definer) {
var localName = name + '/' + parentName;

if(!loader.has(name)) {
if(!loader.has(localName)) {
// `definer` could be a function or could be a moduleName
if (typeof definer === 'string') {
definer = pluginLoader['import'](definer);
Expand Down
4 changes: 2 additions & 2 deletions steal.production.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/npm/bower/node_modules/steal/steal.production.js

Large diffs are not rendered by default.

0 comments on commit f988df2

Please sign in to comment.