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

Docs: Archive Sizzle #497

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = function( grunt ) {
// if Browserstack is set up, assume we can use it
if ( isBrowserStack ) {

// See https://github.com/jquery/sizzle/wiki/Sizzle-Documentation#browsers
// See https://github.com/jquery-archive/sizzle/wiki/Sizzle-Documentation#browsers

browsers.desktop = [
"bs_chrome-45", // shares V8 with Node.js v4 LTS
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Copyright JS Foundation and other contributors, https://js.foundation/

This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
available at https://github.com/jquery/sizzle
available at https://github.com/jquery-archive/sizzle

The following license applies to all parts of this software except as
documented below:
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Sizzle

--------------------

**NOTE: Sizzle is no longer maintained. jQuery versions `3.7.0` or newer no longer depend on Sizzle. Issues with the jQuery selector engine should be reported directly to jQuery at https://github.com/jquery/jquery/issues.**

--------------------

__A pure-JavaScript CSS selector engine designed to be easily dropped in to a host library.__

- [More information](https://sizzlejs.com/)
- [Documentation](https://github.com/jquery/sizzle/wiki/)
- [Browser support](https://github.com/jquery/sizzle/wiki/#wiki-browsers)
- [Documentation](https://github.com/jquery-archive/sizzle/wiki/)
- [Browser support](https://github.com/jquery-archive/sizzle/wiki/#wiki-browsers)

Contribution Guides
---------------------------
Expand Down Expand Up @@ -35,7 +41,7 @@ How to build Sizzle
Clone a copy of the main Sizzle git repo by running:

```bash
git clone git@github.com:jquery/sizzle.git
git clone git@github.com:jquery-archive/sizzle.git
```

In the `sizzle/dist` folder you will find build version of sizzle along with the minified copy and associated map file.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"homepage": "https://sizzlejs.com",
"author": {
"name": "JS Foundation and other contributors",
"url": "https://github.com/jquery/sizzle/blob/main/AUTHORS.txt"
"url": "https://github.com/jquery-archive/sizzle/blob/main/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/jquery/sizzle.git"
"url": "https://github.com/jquery-archive/sizzle.git"
},
"bugs": {
"url": "https://github.com/jquery/sizzle/issues"
"url": "https://github.com/jquery-archive/sizzle/issues"
},
"license": "MIT",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/sizzle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ Sizzle.uniqueSort = function( results ) {
}

// Clear input after sorting to release objects
// See https://github.com/jquery/sizzle/pull/225
// See https://github.com/jquery-archive/sizzle/pull/225
sortInput = null;

return results;
Expand Down