Skip to content

Commit f506668

Browse files
authored
Merge pull request #7 from danger89/master
Fix standard errors (Unnecessary escape character)
2 parents f44910b + 5d35520 commit f506668

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function(grunt) {
2323
ts: {
2424
app: {
2525
files: [{
26-
src: ["src/\*\*/\*.ts", "!src/.baseDir.ts"],
26+
src: ["src/**/*.ts", "!src/.baseDir.ts"],
2727
dest: "./dist"
2828
}],
2929
options: {
@@ -36,7 +36,7 @@ module.exports = function(grunt) {
3636
},
3737
watch: {
3838
ts: {
39-
files: ["src/\*\*/\*.ts"],
39+
files: ["src/**/*.ts"],
4040
tasks: ["ts"]
4141
},
4242
views: {
@@ -55,4 +55,4 @@ module.exports = function(grunt) {
5555
"ts"
5656
]);
5757

58-
};
58+
};

0 commit comments

Comments
 (0)