Skip to content

Commit

Permalink
ags: move main.ts to index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Mar 29, 2024
1 parent cf4ab59 commit 6d70333
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/home/ags/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const entry = `${App.configDir}/src/main.ts`;
const entry = `${App.configDir}/src/index.ts`;
const main = `/tmp/ags/main.js`;

await Utils.execAsync([
Expand Down
2 changes: 1 addition & 1 deletion modules/home/ags/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bricked/ags-dots",
"module": "src/main.ts",
"module": "src/index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
Expand Down
4 changes: 4 additions & 0 deletions modules/home/ags/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
App.config({
windows: [],
style: `${App.configDir}/src/style/global.css`,
});
4 changes: 0 additions & 4 deletions modules/home/ags/src/main.ts

This file was deleted.

0 comments on commit 6d70333

Please sign in to comment.