Skip to content

Commit

Permalink
refactor!: rewrite consola with typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Mar 28, 2023
1 parent 22738ac commit 4479d2f
Show file tree
Hide file tree
Showing 94 changed files with 5,942 additions and 10,555 deletions.
24 changes: 0 additions & 24 deletions .babelrc

This file was deleted.

9 changes: 9 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": ["eslint-config-unjs"],
"rules": {
"no-undef": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-top-level-await": 0,
"unicorn/no-null": 0
}
}
29 changes: 0 additions & 29 deletions .eslintrc.js

This file was deleted.

348 changes: 0 additions & 348 deletions .github/banner.svg

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm vitest --coverage
- uses: codecov/codecov-action@v3
25 changes: 0 additions & 25 deletions .github/workflows/nodejs.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log*
dist
coverage
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit 4479d2f

Please sign in to comment.