Skip to content

Commit 4479d2f

Browse files
committed
refactor!: rewrite consola with typescript
1 parent 22738ac commit 4479d2f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+5942
-10555
lines changed

.babelrc

Lines changed: 0 additions & 24 deletions
This file was deleted.

.eslintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": ["eslint-config-unjs"],
3+
"rules": {
4+
"no-undef": 0,
5+
"unicorn/prefer-module": 0,
6+
"unicorn/prefer-top-level-await": 0,
7+
"unicorn/no-null": 0
8+
}
9+
}

.eslintrc.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/banner.svg

Lines changed: 0 additions & 348 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
ci:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- run: corepack enable
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version: 18
20+
cache: "pnpm"
21+
- run: pnpm install
22+
- run: pnpm lint
23+
- run: pnpm build
24+
- run: pnpm vitest --coverage
25+
- uses: codecov/codecov-action@v3

.github/workflows/nodejs.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
*.log*
33
dist
4+
coverage

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)