Skip to content

Commit c0da80d

Browse files
committed
chore: init
1 parent 007b1b5 commit c0da80d

18 files changed

+3368
-0
lines changed

.github/workflows/ci.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
pull_request:
9+
branches:
10+
- main
11+
12+
merge_group: {}
13+
14+
jobs:
15+
test:
16+
runs-on: ${{ matrix.os }}
17+
18+
strategy:
19+
matrix:
20+
os: [ubuntu-latest]
21+
node_version: [20, lts/*]
22+
include:
23+
- os: macos-latest
24+
node_version: lts/*
25+
- os: windows-latest
26+
node_version: lts/*
27+
fail-fast: false
28+
29+
steps:
30+
- name: Set git to use LF
31+
run: |
32+
git config --global core.autocrlf false
33+
git config --global core.eol lf
34+
35+
- uses: actions/checkout@v4
36+
37+
- name: Install pnpm
38+
uses: pnpm/action-setup@v4
39+
40+
- name: Set node ${{ matrix.node_version }}
41+
uses: actions/setup-node@v4
42+
with:
43+
node-version: ${{ matrix.node_version }}
44+
cache: pnpm
45+
46+
- name: Install
47+
run: pnpm install
48+
49+
- name: Build
50+
run: pnpm build
51+
52+
- name: Test
53+
run: pnpm test
54+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [0.0.1] - 2025-06-207
4+
5+
### Added
6+
7+
- Initial release of Vue Horizontal Scrollbar
8+
- Customizable horizontal scrollbar component
9+
- Support for keyboard navigation
10+
- Responsive design with resize observer
11+
- Flexible positioning with offset props

0 commit comments

Comments
 (0)