Skip to content

Commit 1c2d2d7

Browse files
committed
fone
1 parent bf7e3bf commit 1c2d2d7

23 files changed

+14209
-0
lines changed

License.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Raunak Raj
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build.mjs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import * as esbuild from "esbuild";
2+
import { sassPlugin } from "esbuild-sass-plugin";
3+
import { exec } from "child_process";
4+
5+
let result = await esbuild.build({
6+
entryPoints: ["src/main.js"],
7+
bundle: true,
8+
minify: true,
9+
logLevel: "info",
10+
color: true,
11+
outdir: "dist",
12+
plugins: [
13+
sassPlugin({
14+
type: "css-text",
15+
}),
16+
],
17+
});
18+
19+
exec("node .acode/pack-zip.js", (err, stdout, stderr) => {
20+
if (err) {
21+
console.error(err);
22+
return;
23+
}
24+
console.log(stdout);
25+
});

dist/assets/ai_assistant.svg

Lines changed: 1 addition & 0 deletions
Loading

dist/assets/galaxy.png

89.6 KB
Loading

dist/assets/github-dark.css

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)