Skip to content

Commit

Permalink
Replace custom build system with Gulp. (#259)
Browse files Browse the repository at this point in the history
* Use Gulp for build system, tsc to compile files, part 1.

* Hide tsc-generated files from VSCode.

* Add a private build-utilities package, leveraging Gulp.

* Synchronize files with the same name.

* Capture whether files change.

* Try invoking tsc without overwriting the config.  (Not helping much.)

* InvokeTSC, PushAndPopDirs

* First complete Gulp-based build.

* clean before build

* Run prettier in the code generation directory via Gulp.

* Remove the custom build system in favor of Gulp.
  • Loading branch information
ajvincent authored Oct 5, 2024
1 parent 19eda82 commit b33807f
Show file tree
Hide file tree
Showing 135 changed files with 3,572 additions and 2,170 deletions.
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"files.exclude": {
"packages/v2-es-membrane/_*/**/*.js": { "when": "$(basename).ts"},
"packages/v2-es-membrane/_*/**/*.js.map": true,
"packages/v2-es-membrane/build-utilities/**/*.js": { "when": "$(basename).ts"},
"packages/v2-es-membrane/build-utilities/**/*.js.map": true,
"packages/v2-es-membrane/gulp-utilities/**/*.js": { "when": "$(basename).ts"},
"packages/v2-es-membrane/gulp-utilities/**/*.js.map": true,
"packages/v2-es-membrane/Gulpfile.js": true,
"packages/v2-es-membrane/Gulpfile.js.map": true,
}
}
Loading

0 comments on commit b33807f

Please sign in to comment.