Skip to content

Commit

Permalink
Update to 0.8.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Hann committed Jan 19, 2016
1 parent 40cfa8d commit 8ca08b0
Show file tree
Hide file tree
Showing 10 changed files with 170 additions and 162 deletions.
43 changes: 22 additions & 21 deletions dist/curl-for-dojo1.6/curl.js

Large diffs are not rendered by default.

45 changes: 23 additions & 22 deletions dist/curl-for-dojo1.8/curl.js

Large diffs are not rendered by default.

51 changes: 26 additions & 25 deletions dist/curl-for-jQuery/curl.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/curl-for-ssjs/curl.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* version: 0.8.13 */
/** @license MIT License (c) copyright 2010-2013 B Cavalier & J Hann */

/**
Expand All @@ -13,7 +14,7 @@
(function (global) {
//"use strict"; don't restore this until the config routine is refactored
var
version = '0.8.10',
version = '0.8.13',
curlName = 'curl',
defineName = 'define',
bootScriptAttr = 'data-curl-run',
Expand Down Expand Up @@ -49,7 +50,7 @@
argsNet,
// RegExp's used later, pre-compiled here
dontAddExtRx = /\?|\.js\b/,
absUrlRx = /^\/|^[^:]+:\/\//,
absUrlRx = /^\/|^[^:]+:\/\/|^[A-Za-z]:[\\/]/,
findDotsRx = /(\.)(\.?)(?:$|\/([^\.\/]+.*)?)/g,
removeCommentsRx = /\/\*[\s\S]*?\*\/|\/\/.*?[\n\r]/g,
findRValueRequiresRx = /require\s*\(\s*(["'])(.*?[^\\])\1\s*\)|[^\\]?(["'])/g,
Expand Down
95 changes: 48 additions & 47 deletions dist/curl-kitchen-sink/curl.js

Large diffs are not rendered by default.

47 changes: 24 additions & 23 deletions dist/curl-with-js-and-domReady/curl.js

Large diffs are not rendered by default.

37 changes: 19 additions & 18 deletions dist/curl/curl.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/debug/curl.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* version: 0.8.13 */
/** @license MIT License (c) copyright 2010-2013 B Cavalier & J Hann */

/**
Expand All @@ -13,7 +14,7 @@
(function (global) {
//"use strict"; don't restore this until the config routine is refactored
var
version = '0.8.10',
version = '0.8.13',
curlName = 'curl',
defineName = 'define',
bootScriptAttr = 'data-curl-run',
Expand Down Expand Up @@ -49,7 +50,7 @@
argsNet,
// RegExp's used later, pre-compiled here
dontAddExtRx = /\?|\.js\b/,
absUrlRx = /^\/|^[^:]+:\/\//,
absUrlRx = /^\/|^[^:]+:\/\/|^[A-Za-z]:[\\/]/,
findDotsRx = /(\.)(\.?)(?:$|\/([^\.\/]+.*)?)/g,
removeCommentsRx = /\/\*[\s\S]*?\*\/|\/\/.*?[\n\r]/g,
findRValueRequiresRx = /require\s*\(\s*(["'])(.*?[^\\])\1\s*\)|[^\\]?(["'])/g,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "curl-amd",
"version": "0.8.12",
"version": "0.8.13",
"description": "curl.js is small, fast, extensible module loader that handles AMD, CommonJS Modules/1.1, CSS, HTML/text, and legacy scripts.",
"keywords": ["curl", "cujo", "amd", "loader", "module", "commonjs", "css", "html", "json"],
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/curl.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
(function (global) {
//"use strict"; don't restore this until the config routine is refactored
var
version = '0.8.11',
version = '0.8.13',
curlName = 'curl',
defineName = 'define',
bootScriptAttr = 'data-curl-run',
Expand Down

0 comments on commit 8ca08b0

Please sign in to comment.