Skip to content

Commit

Permalink
remove rollup-plugin-livereload
Browse files Browse the repository at this point in the history
  • Loading branch information
becky-gilbert committed Jan 31, 2024
1 parent 9794ea1 commit 52ddf67
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 71 deletions.
64 changes: 0 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"node": ">=18.0.0 <21.0.0"
},
"devDependencies": {
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1"
}
}
7 changes: 1 addition & 6 deletions packages/lookit-initjspsych/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { makeRollupConfig } from "@jspsych/config/rollup";
import livereload from 'rollup-plugin-livereload';
import serve from 'rollup-plugin-serve';

let rollupConfig = makeRollupConfig("lookitInitJsPsych");
Expand All @@ -21,11 +20,7 @@ rollupConfig.plugins = [
const protocol = this.https ? 'https' : 'http';
console.log(`Server listening at ${protocol}://${host}:${address.port}/`);
}
}),
livereload({
watch: content_dir,
delay: 300
})
})
];

export default rollupConfig;

0 comments on commit 52ddf67

Please sign in to comment.