comparison esbuild.config.mjs @ 34:1c8e46c3e941

Add URL to hosted repos in the generated code file.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 14 Aug 2023 10:40:42 -0700
parents 141f0a7d1986
children d52beb77d109
comparison
equal deleted inserted replaced
33:b77a0dd22db8 34:1c8e46c3e941
3 import builtins from 'builtin-modules' 3 import builtins from 'builtin-modules'
4 4
5 const banner = 5 const banner =
6 `/* 6 `/*
7 THIS IS A GENERATED/BUNDLED FILE BY ESBUILD 7 THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
8 if you want to view the source, please visit the github repository of this plugin 8 if you want to view the source, please visit one of the following:
9 https://hg.bolt80.com/obsidian-remember-file-state
10 https://hg.sr.ht/~ludovicchabant/obsidian-remember-file-state
11 https://github.com/ludovicchabant/obsidian-remember-file-state
9 */ 12 */
10 `; 13 `;
11 14
12 const prod = (process.argv[2] === 'production'); 15 const prod = (process.argv[2] === 'production');
13 16