Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HugoRCD/eslint-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.2
Choose a base ref
...
head repository: HugoRCD/eslint-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.3
Choose a head ref
  • 6 commits
  • 10 files changed
  • 1 contributor

Commits on Apr 3, 2024

  1. fix repo

    HugoRCD committed Apr 3, 2024
    Copy the full SHA
    89929dd View commit details
  2. package now use typescript

    HugoRCD committed Apr 3, 2024
    Copy the full SHA
    22186a5 View commit details
  3. better nuxt handle

    HugoRCD committed Apr 3, 2024
    Copy the full SHA
    927150d View commit details

Commits on Apr 4, 2024

  1. add better vue rules handle

    HugoRCD committed Apr 4, 2024
    Copy the full SHA
    0acc0bd View commit details
  2. more rules

    HugoRCD committed Apr 4, 2024
    Copy the full SHA
    27b7cf5 View commit details
  3. chore(release): v0.0.3

    HugoRCD committed Apr 4, 2024
    Copy the full SHA
    492af43 View commit details
Showing with 343 additions and 301 deletions.
  1. +1 −1 .eslintrc
  2. +0 −1 .husky/commit-msg
  3. +0 −1 .husky/pre-commit
  4. +4 −0 CHANGELOG.md
  5. +9 −0 build.config.ts
  6. BIN bun.lockb
  7. +0 −288 index.js
  8. +300 −0 index.ts
  9. +28 −9 package.json
  10. +1 −1 test/sum.ts
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "."
"extends": "./dist/index.cjs"
}
1 change: 0 additions & 1 deletion .husky/commit-msg

This file was deleted.

1 change: 0 additions & 1 deletion .husky/pre-commit

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog


## v0.0.3

[compare changes](https://github.com/HugoRCD/eslint-config/compare/v0.0.2...v0.0.3)

## v0.0.2

[compare changes](https://github.com/HugoRCD/eslint-config/compare/v0.0.1...v0.0.2)
9 changes: 9 additions & 0 deletions build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: ['index.ts'],
declaration: true,
rollup: {
emitCJS: true,
},
})
Binary file modified bun.lockb
Binary file not shown.
288 changes: 0 additions & 288 deletions index.js

This file was deleted.

Loading