Skip to content

v2.1.0 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .eslintrc.js

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9.0
- run: pnpm install
- run: pnpm run test:ci
- run: pnpm run build
20 changes: 14 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9.0
- run: pnpm ci
- run: pnpm run build

publish-npm:
needs: build
Expand All @@ -22,9 +26,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9.0
- run: pnpm ci
- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ yarn-error.log*
.temp/
.cache/
coverage/
dist/
docs/.vuepress/dist/
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm commitlint --edit $1
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pnpm test
pnpm lint
17 changes: 2 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,16 @@

[![Netlify Status](https://api.netlify.com/api/v1/badges/0d134e46-98be-4533-a02f-fbf9e0358879/deploy-status)](https://app.netlify.com/sites/vue-interact/deploys)


:book: [Checkout the documentation](https://vue-interact.netlify.com/)
:book: [Checkout the documentation](https://vue-interact.netlify.app/)

## Build Setup

``` bash
```bash
npm install vue-interact --save
# or
yarn add vue-interact
```


## Back-To-Work Plan

- [ ] Contribuition directives
- [X] Separate properly InteractPanel
- [ ] Directive
- [ ] Documentation
- [X] Change building process
- [X] CI Process

> Any contribuition is welcome :arrow_up:

## ©️ License

[MIT](http://opensource.org/licenses/MIT)
22 changes: 22 additions & 0 deletions commitlint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
],
],
},
};
13 changes: 0 additions & 13 deletions dist/composables/useDraggable.d.ts

This file was deleted.

19 changes: 0 additions & 19 deletions dist/composables/useInteractContext.d.ts

This file was deleted.

10 changes: 0 additions & 10 deletions dist/composables/useResizable.d.ts

This file was deleted.

11 changes: 0 additions & 11 deletions dist/index.d.ts

This file was deleted.

Loading