Skip to content

Commit

Permalink
updated: dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed May 7, 2016
1 parent ca2c7f6 commit 8720e4a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions dist/csp.tmpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -6519,7 +6519,7 @@

/**
* The riot template engine
* @version WIP
* @version v2.4.0
*/
/**
* riot.util.brackets
Expand Down Expand Up @@ -6585,7 +6585,7 @@

var arr = pair.split(' ')

if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) {
if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) { // eslint-disable-line
throw new Error('Unsupported brackets "' + pair + '"')
}
arr = arr.concat(pair.replace(/(?=[[\]()*+?.^$|])/g, '\\').split(' '))
Expand Down Expand Up @@ -6932,7 +6932,7 @@
// istanbul ignore next: compatibility fix for beta versions
_tmpl.parse = function (s) { return s }

_tmpl.version = brackets.version = 'WIP'
_tmpl.version = brackets.version = 'v2.4.0'

return _tmpl

Expand Down
6 changes: 3 additions & 3 deletions dist/es6.tmpl.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/**
* The riot template engine
* @version v2.3.21
* @version v2.4.0
*/
/**
* riot.util.brackets
Expand Down Expand Up @@ -68,7 +68,7 @@ var brackets = (function (UNDEF) {

var arr = pair.split(' ')

if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) {
if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) { // eslint-disable-line
throw new Error('Unsupported brackets "' + pair + '"')
}
arr = arr.concat(pair.replace(/(?=[[\]()*+?.^$|])/g, '\\').split(' '))
Expand Down Expand Up @@ -417,7 +417,7 @@ var tmpl = (function () {
// istanbul ignore next: compatibility fix for beta versions
_tmpl.parse = function (s) { return s }

_tmpl.version = brackets.version = 'v2.3.21'
_tmpl.version = brackets.version = 'v2.4.0'

return _tmpl

Expand Down
6 changes: 3 additions & 3 deletions dist/riot.tmpl.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/**
* The riot template engine
* @version v2.3.21
* @version v2.4.0
*/
/**
* riot.util.brackets
Expand Down Expand Up @@ -65,7 +65,7 @@ var brackets = (function (UNDEF) {

var arr = pair.split(' ')

if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) {
if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) { // eslint-disable-line
throw new Error('Unsupported brackets "' + pair + '"')
}
arr = arr.concat(pair.replace(/(?=[[\]()*+?.^$|])/g, '\\').split(' '))
Expand Down Expand Up @@ -413,7 +413,7 @@ var tmpl = (function () {
// istanbul ignore next: compatibility fix for beta versions
_tmpl.parse = function (s) { return s }

_tmpl.version = brackets.version = 'v2.3.21'
_tmpl.version = brackets.version = 'v2.4.0'

return _tmpl

Expand Down
7 changes: 4 additions & 3 deletions dist/tmpl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* riot-tmpl WIP, @license MIT, (c) 2015 Muut Inc. + contributors */

/* riot-tmpl v2.4.0, @license MIT, (c) 2015 Muut Inc. + contributors */
;(function (window) { // eslint-disable-line no-extra-semi
'use strict'
/**
Expand Down Expand Up @@ -63,7 +64,7 @@

var arr = pair.split(' ')

if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) {
if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) { // eslint-disable-line
throw new Error('Unsupported brackets "' + pair + '"')
}
arr = arr.concat(pair.replace(/(?=[[\]()*+?.^$|])/g, '\\').split(' '))
Expand Down Expand Up @@ -415,7 +416,7 @@

})()

tmpl.version = brackets.version = 'v2.3.21'
tmpl.version = brackets.version = 'v2.4.0'

/* istanbul ignore else */
if (typeof module === 'object' && module.exports) {
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@
],
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"eslint": "^2.9.0",
"esprima": "^2.7.2",
"expect.js": "^0.3.1",
"hoister": "0.0.2",
"istanbul": "^0.4.3",
"jspreproc": "^0.2.7",
"karma": "^0.13.22",
"karma-browserstack-launcher": "^0.1.11",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-browserstack-launcher": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"riot-bump": "^1.0.0",
"rollup": "^0.26.0",
"rollup": "^0.26.2",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-node-resolve": "^1.5.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/brackets.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ var brackets = (function (UNDEF) {

var arr = pair.split(' ')

if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) {
if (arr.length !== 2 || /[\x00-\x1F<>a-zA-Z0-9'",;\\]/.test(pair)) { // eslint-disable-line
throw new Error('Unsupported brackets "' + pair + '"')
}
arr = arr.concat(pair.replace(/(?=[[\]()*+?.^$|])/g, '\\').split(' '))
Expand Down

0 comments on commit 8720e4a

Please sign in to comment.