File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ const packageJson = require("./package.json");
10
10
11
11
const compiler = webpack ( webpackConfig ) ;
12
12
const paths = {
13
- src : "./src" ,
13
+ src : [
14
+ "./src" ,
15
+ "./tsconfig.json"
16
+ ] ,
14
17
dist : "./dist" ,
15
18
root : "."
16
19
} ;
Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ const packageJson = require("./package.json");
10
10
11
11
const compiler = webpack ( webpackConfig ) ;
12
12
const paths = {
13
- src : "./src" ,
13
+ src : [
14
+ "./src" ,
15
+ "./tsconfig.json"
16
+ ] ,
14
17
dist : "./dist" ,
15
18
root : "."
16
19
} ;
@@ -36,7 +39,6 @@ export async function moveFromDistTask() {
36
39
export async function copyToJspm ( ) {
37
40
const jspmPath = `../simplr-forms-test/dist/jspm_packages/npm/simplr-forms-dom@${ packageJson . version } ` ;
38
41
const outputPath = path . resolve ( jspmPath ) ;
39
- console . log ( outputPath ) ;
40
42
gulp . src ( packageJson . files )
41
43
. pipe ( gulp . dest ( outputPath ) ) ;
42
44
}
You can’t perform that action at this time.
0 commit comments