-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0a1ea26
Showing
13 changed files
with
2,466 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
OSU_API_KEY= | ||
OSU_FOLDER_PATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9.4.0 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: "pnpm" | ||
|
||
- name: Install dependencies | ||
run: pnpm i | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Release | ||
run: | | ||
gh release upload release --clobber dist/osu-ubu.exe | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules/ | ||
dist/ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "pnpm start", | ||
"name": "pnpm start", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { build } from 'esbuild'; | ||
|
||
await build({ | ||
entryPoints: ['src/index.ts'], | ||
outfile: 'dist/index.js', | ||
bundle: true, | ||
treeShaking: true, | ||
sourcemap: 'linked', | ||
format: 'cjs', | ||
target: 'esnext', | ||
platform: 'node', | ||
logLevel: 'error' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import eslint from '@eslint/js'; | ||
import simpleImportSort from 'eslint-plugin-simple-import-sort'; | ||
import { rules } from 'eslint-plugin-unused-imports'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
export default tseslint.config( | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...tseslint.configs.stylistic, | ||
{ | ||
ignores: ['node_modules', 'dist'] | ||
}, | ||
{ | ||
plugins: { | ||
'simple-import-sort': simpleImportSort, | ||
'unused-imports': { | ||
meta: { | ||
name: 'eslint-plugin-simple-import-sort', | ||
version: '3.2.0', | ||
}, | ||
rules | ||
} | ||
}, | ||
rules: { | ||
quotes: ['error', 'single', { avoidEscape: true }], | ||
'simple-import-sort/imports': 'error', | ||
'simple-import-sort/exports': 'error', | ||
'unused-imports/no-unused-imports': 'error' | ||
} | ||
} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "node build.mjs && node --experimental-sea-config sea.json && node -e \"require('fs').copyFileSync(process.execPath, 'dist/osu-ubu.exe')\" && pnpm dlx postject dist/osu-ubu.exe NODE_SEA_BLOB dist/sea.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2", | ||
"lint": "tsc && eslint .", | ||
"start": "node build.mjs && node ." | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.2.0", | ||
"@types/node": "^20.12.12", | ||
"esbuild": "^0.21.3", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-simple-import-sort": "^12.1.0", | ||
"eslint-plugin-unused-imports": "^3.2.0", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.9.0" | ||
}, | ||
"dependencies": { | ||
"osu-buffer": "^2.0.2" | ||
} | ||
} |
Oops, something went wrong.