Skip to content

Commit

Permalink
v2.0.0 (#44)
Browse files Browse the repository at this point in the history
New 2.0.0 version, including:

- Complete rewrite based on Alpine.js plugin system;
- Automated testing with Playwright;
- Reworked build system;
- Updated and refined linting;
  • Loading branch information
Accudio authored Sep 25, 2024
1 parent d141d56 commit 316af0e
Show file tree
Hide file tree
Showing 120 changed files with 5,976 additions and 3,124 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
root = true

[*]
indent_style = space
indent_style = tab
indent_size = 2
charset = utf-8
end_of_line = lf
Expand Down
80 changes: 0 additions & 80 deletions .eslintrc

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ node_modules/
local/
.idea/
.DS_Store
*.map

# tests
/tests/dist/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
npm run build
git add dist/*
git add dist/*.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Async Alpine allows you to split your components into multiple component files a
Using a CDN:

```html
<script defer src="https://cdn.jsdelivr.net/npm/async-alpine@1.x.x/dist/async-alpine.script.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/async-alpine@2.x.x/dist/async-alpine.script.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
```

Expand Down
Loading

0 comments on commit 316af0e

Please sign in to comment.