diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml new file mode 100644 index 0000000..d470cda --- /dev/null +++ b/.forgejo/workflows/publish.yaml @@ -0,0 +1,6 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - run: echo All Good diff --git a/bun.lockb b/bun.lockb index 74b89ee..9e0278b 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000..e2b9a35 --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,3 @@ +[install.scopes] + +"@alecodes" = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" } diff --git a/package.json b/package.json index 5b82e52..9a1c1f5 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { - "name": "mini-strap", + "name": "@alecodes/mini-strap", + "version": "0.0.1", "module": "index.ts", "devDependencies": { "@eslint/js": "^9.10.0", @@ -17,5 +18,7 @@ "dev": "bun --filter '*' dev" }, "type": "module", - "workspaces": ["packages/*"] + "workspaces": [ + "packages/*" + ] }