chore:(build) change build scripts to handle changes in extensions

This commit is contained in:
Oliver Klein 2022-12-12 11:45:38 -08:00
parent a1bf9e2064
commit 92d436369d
2 changed files with 3 additions and 3 deletions

View file

@ -11,8 +11,8 @@ exports.default = function() {
watch([`src/**/*.{jinja,html,css,svg}`], { events: 'all' }, (cb) => {
console.log("Change in source folder")
src(`src/cryptoadvance/specter/**/*.{jinja,html,css,svg}`)
.pipe(dest(`.env/lib/python3.10/site-packages/cryptoadvance/specter/`))
src(`src/cryptoadvance/**/*.{jinja,html,css,svg}`)
.pipe(dest(`.env/lib/python3.10/site-packages/cryptoadvance/`))
.pipe(livereload()) // trigger update
cb();

View file

@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/cryptoadvance/specter/templates/**/*.{html,js,jinja}"],
content: ["./src/cryptoadvance/**/*.{html,js,jinja}"],
theme: {
fontFamily: {
sans: ["Social", "sans-serif"],