File tree 2 files changed +5
-4
lines changed
docs/yuidoc-p5-theme-src/scripts/tpl 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 19
19
* start the connect server and leave it running; the tests
20
20
* can then be opened at localhost:9001/test/test.html
21
21
*
22
+ * grunt yui:dev - This rebuilds the inline documentation. It also rebuilds
23
+ * each time a change to the source is detected. You can preview
24
+ * the reference at localhost:9001/test/test.html
25
+ *
22
26
* Note: `grunt test:nobuild` will skip the build step when running the tests,
23
27
* and only runs the test files themselves through the linter: this can save
24
28
* a lot of time when authoring test specs without making any build changes.
@@ -447,6 +451,7 @@ module.exports = function(grunt) {
447
451
'open:yui' ,
448
452
'watch:yui'
449
453
] ) ;
454
+ grunt . registerTask ( 'yui:build' , [ 'requirejs:yuidoc_theme' , 'yui' ] ) ;
450
455
grunt . registerTask ( 'default' , [ 'test' ] ) ;
451
456
grunt . registerTask ( 'saucetest' , [ 'connect' , 'saucelabs-mocha' ] ) ;
452
457
} ;
Original file line number Diff line number Diff line change @@ -85,10 +85,6 @@ <h4>Syntax</h4>
85
85
< span class ="flag final "> constant</ span >
86
86
< % } %>
87
87
88
- < % if (item.static) { %>
89
- < span class ="flag static "> static</ span >
90
- < % } %>
91
-
92
88
< % if (item.chainable) { %>
93
89
< p class ="label label-success chainable "> chainable</ p >
94
90
< % } %>
You can’t perform that action at this time.
0 commit comments