diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-14 09:57:50 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-21 11:00:40 -0400 |
commit | 7336a5869ceb2bf27779b5f089277c365fc7d278 (patch) | |
tree | be78b7a4add4c74c4f2d42065398d029f1d688fb /Gruntfile.js | |
parent | 62446d957efb69cd53015919edf71501fcbd2599 (diff) | |
download | jquery-ui-7336a5869ceb2bf27779b5f089277c365fc7d278.tar.gz jquery-ui-7336a5869ceb2bf27779b5f089277c365fc7d278.zip |
Demos: Add new infrastructure using a require.js bootstrap
Fixes #10119
Closes gh-1557
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 3018702f5..c4acdb7fc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -205,9 +205,18 @@ grunt.initConfig({ }, uglify: minify, htmllint: { - good: [ "demos/**/*.html", "tests/**/*.html" ].concat( htmllintBad.map( function( file ) { + good: [ "tests/**/*.html" ].concat( htmllintBad.map( function( file ) { return "!" + file; } ) ), + demos: { + options: { + ignore: [ + /The text content of element “script” was not in the required format: Expected space, tab, newline, or slash but found “.” instead/ + ] }, + src: [ "demos/**/*.html" ].concat( htmllintBad.map( function( file ) { + return "!" + file; + } ) ) + }, bad: { options: { ignore: [ |