* WIP * Add debug * Dedupe inserts * Add deterministic ordering * Fix whitespaces * Update insta * Add integration test script * Rename * Add test * Working for non-deletes * omg it mostly works for deletes * Isdeleted fix * remove created dates * update api * Take document id * No max attempt * works * Use string uuids * . * working!!!! (hopefully) * Improve bundling * Add module * lint * . * lint * Fix CI * use toolchain * clean up * Add useSlowFileEvents * Delete fuzz * Fix CI * use docker * fix script * clean up * Clean up * change node version * Build docker image on every commit * fix ci * 1 db per vault * Add scritps folder * Bump versions * Lint * . * Fix tests for real * Style * . * try * Consistent ordering * Fix tests * hmm * . * Clean up diff * Fixes * . * Fix version bump * . * . * .
108 lines
2.2 KiB
JavaScript
108 lines
2.2 KiB
JavaScript
const path = require("path");
|
|
const TerserPlugin = require("terser-webpack-plugin");
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
const fs = require("fs-extra");
|
|
|
|
module.exports = (env, argv) => ({
|
|
devtool: argv.mode === "development" ? "inline-source-map" : false,
|
|
entry: {
|
|
index: "./src/vault-link-plugin.ts"
|
|
},
|
|
watchOptions: {
|
|
ignored: "**/node_modules"
|
|
},
|
|
externals: {
|
|
obsidian: "commonjs obsidian"
|
|
},
|
|
optimization: {
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
terserOptions: {
|
|
module: true
|
|
}
|
|
})
|
|
]
|
|
},
|
|
plugins: [
|
|
new MiniCssExtractPlugin({
|
|
filename: "styles.css"
|
|
}),
|
|
{
|
|
apply: (compiler) => {
|
|
if (argv.mode !== "development") {
|
|
return;
|
|
}
|
|
|
|
compiler.hooks.done.tap("Copy Files Plugin", (stats) => {
|
|
const source = path.resolve(__dirname, "dist");
|
|
const destinations = [
|
|
"/mnt/c/Users/Andras/Desktop/test/test/.obsidian/plugins/my-plugin",
|
|
"/mnt/c/Users/Andras/Desktop/test/test2/.obsidian/plugins/my-plugin",
|
|
"/home/andras/obsidian-test/.obsidian/plugins/my-plugin"
|
|
];
|
|
destinations.forEach((destination) => {
|
|
fs.copy(source, destination)
|
|
.then(() =>
|
|
console.log(
|
|
"Files copied successfully after build!"
|
|
)
|
|
)
|
|
.catch((err) =>
|
|
console.error("Error copying files:", err)
|
|
);
|
|
|
|
fs.createFile(path.join(destination, ".hotreload"));
|
|
});
|
|
});
|
|
}
|
|
}
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.json$/i,
|
|
type: "asset/resource",
|
|
generator: {
|
|
filename: "[name][ext]"
|
|
}
|
|
},
|
|
{
|
|
test: /\.scss$/i,
|
|
use: [
|
|
MiniCssExtractPlugin.loader,
|
|
"css-loader",
|
|
"resolve-url-loader",
|
|
{
|
|
loader: "sass-loader",
|
|
options: {
|
|
sourceMap: true // required by resolve-url-loader
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.ts$/,
|
|
use: ["ts-loader"]
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: [
|
|
".ts",
|
|
".js" // required for development
|
|
],
|
|
alias: {
|
|
root: __dirname,
|
|
src: path.resolve(__dirname, "src")
|
|
}
|
|
},
|
|
output: {
|
|
clean: true,
|
|
filename: "main.js",
|
|
library: {
|
|
type: "commonjs" // required for Obsidian
|
|
},
|
|
path: path.resolve(__dirname, "dist"),
|
|
publicPath: ""
|
|
}
|
|
});
|