source: frontend/node_modules/jake/test/unit/jakefile.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 580 bytes
Line 
1
2task('foo', function () {
3 console.log('ran top-level foo');
4});
5
6task('bar', function () {
7 console.log('ran top-level bar');
8});
9
10task('zerb', function () {
11 console.log('ran zerb');
12});
13
14namespace('zooby', function () {
15 task('zerp', function () {});
16
17 task('derp', ['zerp'], function () {});
18
19 namespace('frang', function () {
20
21 namespace('w00t', function () {
22 task('bar', function () {
23 console.log('ran zooby:frang:w00t:bar');
24 });
25 });
26
27 task('asdf', function () {});
28 });
29
30});
31
32namespace('hurr', function () {
33 namespace('durr');
34});
35
36
Note: See TracBrowser for help on using the repository browser.