Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: third_party/pkg/di/Gruntfile.coffee

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/pkg/di/.travis.yml ('k') | third_party/pkg/di/LICENSE » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 spawn = require('child_process').spawn
2
3 DART_VM = process.env.DART_VM or '../dart-sdk/bin/dart'
4
5 module.exports = (grunt) ->
6 grunt.initConfig
7 watch:
8 tests:
9 files: ['test/**/*.dart', 'lib/**/*.dart']
10 tasks: ['dart']
11 dart:
12 tests:
13 entry: 'test/main.dart'
14
15 grunt.registerMultiTask 'dart', 'run dart program', ->
16 spawn(DART_VM, [@data.entry], {stdio: 'inherit'}).on 'close', @async()
17
18 grunt.loadNpmTasks 'grunt-contrib-watch'
OLDNEW
« no previous file with comments | « third_party/pkg/di/.travis.yml ('k') | third_party/pkg/di/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698