Skip to content

Commit

Permalink
chore: update dept
Browse files Browse the repository at this point in the history
  • Loading branch information
elonehoo committed Oct 1, 2023
1 parent 679e182 commit 5708b7c
Show file tree
Hide file tree
Showing 8 changed files with 1,108 additions and 1,550 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@elonehoo"
"extends": "@antfu"
}
36 changes: 36 additions & 0 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: autofix.ci

on:
push:
branches:
- main

pull_request:
branches:
- main

permissions:
contents: read

jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup PNPM
run: corepack enable

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm

- name: Install
run: pnpm install --no-frozen-lockfile

- name: Lint and fix
run: pnpm run lint:fix

- uses: autofix-ci/action@8caa572fd27b0019a65e4c695447089c8d3138b9
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
"name": "@elonehoo/point-line",
"version": "0.0.6",
"description": "Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes, or dits and dahs.",
"license": "MIT",
"author": "Elone Hoo <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/elonehoo",
"homepage": "https://github.com/elonehoo/point-line#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elonehoo/point-line.git"
},
"funding": "https://github.com/sponsors/elonehoo",
"homepage": "https://github.com/elonehoo/point-line#readme",
"bugs": {
"url": "https://github.com/elonehoo/point-line/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
Expand All @@ -40,16 +40,16 @@
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@elonehoo/eslint-config": "2.0.0",
"@types/node": "20.4.4",
"@vitest/coverage-c8": "^0.33.0",
"bumpp": "9.1.1",
"eslint": "8.45.0",
"pnpm": "8.6.9",
"rimraf": "5.0.1",
"typescript": "5.1.6",
"unbuild": "1.2.1",
"vite": "4.4.6",
"vitest": "^0.33.0"
"@antfu/eslint-config": "0.43.1",
"@types/node": "20.8.0",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "9.2.0",
"eslint": "8.50.0",
"pnpm": "8.8.0",
"rimraf": "5.0.5",
"typescript": "5.2.2",
"unbuild": "2.0.0",
"vite": "4.4.9",
"vitest": "^0.34.6"
}
}
Loading

0 comments on commit 5708b7c

Please sign in to comment.