From cc7c7b332123b10eba471a4a7de49c5e5e999afb Mon Sep 17 00:00:00 2001 From: Martin Probst Date: Thu, 2 Apr 2015 12:58:45 -0700 Subject: [PATCH] fix(build): Don't include rtts in the dart build. The module name actually does not include a trailing slash, so the folder would show up and be included in the dart pubbuild. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 338d9704a8..b91a590ae7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -220,7 +220,7 @@ var CONFIG = { }, dart: { src: ['LICENSE'], - exclude: ['rtts_assert/'], + exclude: ['rtts_assert'], pipes: {} } },