Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrburke committed Sep 5, 2016
1 parent 5d6ca37 commit 4e1e84f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions alameda-prim.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license alameda 1.0.0 Copyright jQuery Foundation and other contributors.
* @license alameda 1.1.0 Copyright jQuery Foundation and other contributors.
* Released under MIT license, http://github.com/requirejs/alameda/LICENSE
*/
// Going sloppy because loader plugin execs may depend on non-strict execution.
Expand Down Expand Up @@ -244,7 +244,7 @@ var requirejs, require, define;
queue = [],
currDirRegExp = /^\.\//,
urlRegExp = /^\/|\:|\?|\.js$/,
commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg,
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
jsSuffixRegExp = /\.js$/,
slice = Array.prototype.slice;
Expand All @@ -254,7 +254,7 @@ var requirejs, require, define;
}

// Could match something like ')//comment', do not lose the prefix to comment.
function commentReplace(match, multi, multiText, singlePrefix) {
function commentReplace(match, singlePrefix) {
return singlePrefix || '';
}

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alameda-prim",
"version": "1.0.0",
"version": "1.1.0",
"ignore": [
".gitignore",
".npmignore",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alameda-prim",
"description": "The alameda AMD loader that includes a private promise shim",
"version": "1.0.0",
"version": "1.1.0",
"homepage": "http://github.com/requirejs/alameda-prim",
"author": "James Burke <[email protected]> (http://github.com/jrburke)",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions parts/alameda.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license alameda 1.0.0 Copyright jQuery Foundation and other contributors.
* @license alameda 1.1.0 Copyright jQuery Foundation and other contributors.
* Released under MIT license, http://github.com/requirejs/alameda/LICENSE
*/
// Going sloppy because loader plugin execs may depend on non-strict execution.
Expand All @@ -19,7 +19,7 @@ var requirejs, require, define;
queue = [],
currDirRegExp = /^\.\//,
urlRegExp = /^\/|\:|\?|\.js$/,
commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg,
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
jsSuffixRegExp = /\.js$/,
slice = Array.prototype.slice;
Expand All @@ -29,7 +29,7 @@ var requirejs, require, define;
}

// Could match something like ')//comment', do not lose the prefix to comment.
function commentReplace(match, multi, multiText, singlePrefix) {
function commentReplace(match, singlePrefix) {
return singlePrefix || '';
}

Expand Down

0 comments on commit 4e1e84f

Please sign in to comment.