Skip to content

Commit ef71375

Browse files
tsconfig.json added to gulp watch paths.
1 parent 3daf6e3 commit ef71375

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

packages/simplr-forms-core/tools/gulpfile.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ const packageJson = require("./package.json");
1010

1111
const compiler = webpack(webpackConfig);
1212
const paths = {
13-
src: "./src",
13+
src: [
14+
"./src",
15+
"./tsconfig.json"
16+
],
1417
dist: "./dist",
1518
root: "."
1619
};

packages/simplr-forms-dom/tools/gulpfile.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ const packageJson = require("./package.json");
1010

1111
const compiler = webpack(webpackConfig);
1212
const paths = {
13-
src: "./src",
13+
src: [
14+
"./src",
15+
"./tsconfig.json"
16+
],
1417
dist: "./dist",
1518
root: "."
1619
};
@@ -36,7 +39,6 @@ export async function moveFromDistTask() {
3639
export async function copyToJspm() {
3740
const jspmPath = `../simplr-forms-test/dist/jspm_packages/npm/simplr-forms-dom@${packageJson.version}`;
3841
const outputPath = path.resolve(jspmPath);
39-
console.log(outputPath);
4042
gulp.src(packageJson.files)
4143
.pipe(gulp.dest(outputPath));
4244
}

0 commit comments

Comments
 (0)