chore: setup ci workflow
Some checks failed
Publish package / build_and_publish (push) Failing after 18s

update workflows

update workflows

update workflows

update workflows

update config

add cog config
This commit is contained in:
Alexander Navarro 2024-10-23 12:55:26 -03:00
parent cf0b4011d1
commit d2dee4d1ef
Signed by untrusted user who does not match committer: anavarro
GPG key ID: 6426043E9FA3E3B5
8 changed files with 107 additions and 10 deletions

View file

@ -1,6 +1,8 @@
{
"name": "mini-strap",
"name": "@alecodes/mini-strap",
"version": "0.0.1",
"module": "index.ts",
"private": true,
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/bun": "latest",
@ -14,8 +16,12 @@
"typescript": "^5.0.0"
},
"scripts": {
"dev": "bun --filter '*' dev"
"dev": "bun --filter '*' dev",
"ci:publish": "bun --filter '**/core' ci:publish",
"bump": "cog bump --auto --skip-untracked"
},
"type": "module",
"workspaces": ["packages/*"]
"workspaces": [
"packages/*"
]
}