Created
November 15, 2022 12:05
-
-
Save triacontane/59641a37a69cf9589dcda3ec41634ebf to your computer and use it in GitHub Desktop.
データベースのファイル監視
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gulp = require('gulp'); | |
const watch = require('gulp-watch'); | |
gulp.task('watch', ()=> { | |
watch(['./PluginDevelopmentMz/data/Actors.json'], ()=> { | |
console.log('Actors.json changed.'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ツクールのプロジェクトフォルダのひとつうえの階層でインストール
npm install gulp
npm install gulp-watch
プロジェクトフォルダの名称はPluginDevelopmentMz