mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
147 lines
4.8 KiB
JavaScript
147 lines
4.8 KiB
JavaScript
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
import replace from "@rollup/plugin-replace";
|
|
import { terser } from "rollup-plugin-terser";
|
|
import copy from "rollup-plugin-copy";
|
|
import typescript2 from "rollup-plugin-typescript2";
|
|
import fs from 'fs';
|
|
import LZString from 'lz-string';
|
|
import postprocess from '@zsviczian/rollup-plugin-postprocess';
|
|
import cssnano from 'cssnano';
|
|
|
|
// Load environment variables
|
|
import dotenv from 'dotenv';
|
|
dotenv.config();
|
|
|
|
const DIST_FOLDER = 'dist';
|
|
const isProd = (process.env.NODE_ENV === "production");
|
|
const isLib = (process.env.NODE_ENV === "lib");
|
|
console.log(`Running: ${process.env.NODE_ENV}`);
|
|
|
|
const excalidraw_pkg = isLib ? "" : isProd
|
|
? fs.readFileSync("./node_modules/@zsviczian/excalidraw/dist/excalidraw.production.min.js", "utf8")
|
|
: fs.readFileSync("./node_modules/@zsviczian/excalidraw/dist/excalidraw.development.js", "utf8");
|
|
const react_pkg = isLib ? "" : isProd
|
|
? fs.readFileSync("./node_modules/react/umd/react.production.min.js", "utf8")
|
|
: fs.readFileSync("./node_modules/react/umd/react.development.js", "utf8");
|
|
const reactdom_pkg = isLib ? "" : isProd
|
|
? fs.readFileSync("./node_modules/react-dom/umd/react-dom.production.min.js", "utf8")
|
|
: fs.readFileSync("./node_modules/react-dom/umd/react-dom.development.js", "utf8");
|
|
|
|
const lzstring_pkg = isLib ? "" : fs.readFileSync("./node_modules/lz-string/libs/lz-string.min.js", "utf8");
|
|
if (!isLib) {
|
|
const excalidraw_styles = isProd
|
|
? fs.readFileSync("./node_modules/@zsviczian/excalidraw/dist/styles.production.css", "utf8")
|
|
: fs.readFileSync("./node_modules/@zsviczian/excalidraw/dist/styles.development.css", "utf8");
|
|
const plugin_styles = fs.readFileSync("./styles.css", "utf8");
|
|
const styles = plugin_styles + excalidraw_styles;
|
|
cssnano()
|
|
.process(styles) // Process the CSS
|
|
.then(result => {
|
|
fs.writeFileSync(`./${DIST_FOLDER}/styles.css`, result.css);
|
|
})
|
|
.catch(error => {
|
|
console.error('Error while processing CSS:', error);
|
|
});
|
|
}
|
|
|
|
const manifestStr = isLib ? "" : fs.readFileSync("manifest.json", "utf-8");
|
|
const manifest = isLib ? {} : JSON.parse(manifestStr);
|
|
if (!isLib) console.log(manifest.version);
|
|
|
|
const packageString = isLib
|
|
? ""
|
|
: ';' + lzstring_pkg +
|
|
'\nlet EXCALIDRAW_PACKAGES = LZString.decompressFromBase64("' + LZString.compressToBase64(react_pkg + reactdom_pkg + excalidraw_pkg) + '");\n' +
|
|
'let {react, reactDOM, excalidrawLib} = window.eval.call(window, `(function() {' +
|
|
'${EXCALIDRAW_PACKAGES};' +
|
|
'return {react: React, reactDOM: ReactDOM, excalidrawLib: ExcalidrawLib};})();`);\n' +
|
|
'let PLUGIN_VERSION="' + manifest.version + '";';
|
|
|
|
const BASE_CONFIG = {
|
|
input: 'src/main.ts',
|
|
external: [
|
|
'@codemirror/autocomplete',
|
|
'@codemirror/collab',
|
|
'@codemirror/commands',
|
|
'@codemirror/language',
|
|
'@codemirror/lint',
|
|
'@codemirror/search',
|
|
'@codemirror/state',
|
|
'@codemirror/view',
|
|
'@lezer/common',
|
|
'@lezer/highlight',
|
|
'@lezer/lr',
|
|
'obsidian',
|
|
'@zsviczian/excalidraw',
|
|
'react',
|
|
'react-dom'
|
|
],
|
|
};
|
|
|
|
const getRollupPlugins = (tsconfig, ...plugins) => [
|
|
typescript2(tsconfig),
|
|
replace({
|
|
preventAssignment: true,
|
|
"process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV),
|
|
}),
|
|
commonjs(),
|
|
nodeResolve({ browser: true, preferBuiltins: false }),
|
|
].concat(plugins);
|
|
|
|
const BUILD_CONFIG = {
|
|
...BASE_CONFIG,
|
|
output: {
|
|
dir: DIST_FOLDER,
|
|
entryFileNames: 'main.js',
|
|
format: 'cjs',
|
|
exports: 'default',
|
|
},
|
|
plugins: getRollupPlugins(
|
|
{tsconfig: isProd ? "tsconfig.json" : "tsconfig.dev.json"},
|
|
...(isProd ? [
|
|
terser({
|
|
toplevel: false,
|
|
compress: { passes: 2 },
|
|
format: {
|
|
comments: false, // Remove all comments
|
|
},
|
|
}),
|
|
postprocess([
|
|
[/React=require\("react"\),state=require\("@codemirror\/state"\),view=require\("@codemirror\/view"\)/,
|
|
`state=require("@codemirror/state"),view=require("@codemirror/view")` + packageString],
|
|
]),
|
|
] : [
|
|
postprocess([ [/var React = require\('react'\);/, packageString] ]),
|
|
]),
|
|
copy({
|
|
targets: [ { src: 'manifest.json', dest: DIST_FOLDER } ],
|
|
verbose: true,
|
|
}),
|
|
),
|
|
};
|
|
|
|
const LIB_CONFIG = {
|
|
...BASE_CONFIG,
|
|
input: "src/index.ts",
|
|
output: {
|
|
dir: "lib",
|
|
sourcemap: true,
|
|
format: "cjs",
|
|
name: "Excalidraw (Library)",
|
|
},
|
|
plugins: getRollupPlugins(
|
|
{ tsconfig: "tsconfig-lib.json" },
|
|
copy({ targets: [{ src: "src/*.d.ts", dest: "lib/typings" }] })
|
|
),
|
|
};
|
|
|
|
let config = [];
|
|
if (process.env.NODE_ENV === "lib") {
|
|
config.push(LIB_CONFIG);
|
|
} else {
|
|
config.push(BUILD_CONFIG);
|
|
}
|
|
|
|
export default config;
|