Skip to content
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

doc: update to current version in examples #14

Merged
merged 2 commits into from
Aug 30, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ console.log("innerText:", $("p:nth-child(2").innerText);
### via GitHub

```bash
my_ver="v3.0.0"
my_ver="v3.0.3"

mkdir ./vendor/

Expand All @@ -37,19 +37,19 @@ npx -p uglify-js@3 uglifyjs ./vendor/ajquery.js -o ./vendor/ajquery.min.js
### via CDN

```html
<script src="https://unpkg.com/[email protected].0/ajquery.min.js"></script>
<script src="https://unpkg.com/[email protected].3/ajquery.min.js"></script>
```

Bundler-optimized:

```html
<script src="https://unpkg.com/[email protected].0/ajquery.min.cjs"></script>
<script src="https://unpkg.com/[email protected].3/ajquery.min.cjs"></script>
```

Tree-shaking-optimized:

```html
<script src="https://unpkg.com/[email protected].0/ajquery.min.mjs"></script>
<script src="https://unpkg.com/[email protected].3/ajquery.min.mjs"></script>
```

### via NPM
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ajquery",
"version": "3.0.2",
"version": "3.0.3",
"description": "The fastest, most lightweight, least dependency jQuery alternative. Now typed, Ai-enhanced, and better than ever!",
"main": "ajquery.cjs",
"module": "ajquery.mjs",
Expand Down
Loading