Skip to content

Commit 2a2475c

Browse files
committed
Docs: Archive Sizzle, step 1
Rename GitHub references from jquery/sizzle to jquery-archive/sizzle.
1 parent 4194dc4 commit 2a2475c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = function( grunt ) {
2828
// if Browserstack is set up, assume we can use it
2929
if ( isBrowserStack ) {
3030

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

3333
browsers.desktop = [
3434
"bs_chrome-45", // shares V8 with Node.js v4 LTS

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Copyright JS Foundation and other contributors, https://js.foundation/
22

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

77
The following license applies to all parts of this software except as
88
documented below:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
__A pure-JavaScript CSS selector engine designed to be easily dropped in to a host library.__
44

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

99
Contribution Guides
1010
---------------------------
@@ -35,7 +35,7 @@ How to build Sizzle
3535
Clone a copy of the main Sizzle git repo by running:
3636

3737
```bash
38-
git clone git@github.com:jquery/sizzle.git
38+
git clone git@github.com:jquery-archive/sizzle.git
3939
```
4040

4141
In the `sizzle/dist` folder you will find build version of sizzle along with the minified copy and associated map file.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"homepage": "https://sizzlejs.com",
1414
"author": {
1515
"name": "JS Foundation and other contributors",
16-
"url": "https://github.com/jquery/sizzle/blob/main/AUTHORS.txt"
16+
"url": "https://github.com/jquery-archive/sizzle/blob/main/AUTHORS.txt"
1717
},
1818
"repository": {
1919
"type": "git",
20-
"url": "https://github.com/jquery/sizzle.git"
20+
"url": "https://github.com/jquery-archive/sizzle.git"
2121
},
2222
"bugs": {
23-
"url": "https://github.com/jquery/sizzle/issues"
23+
"url": "https://github.com/jquery-archive/sizzle/issues"
2424
},
2525
"license": "MIT",
2626
"files": [

src/sizzle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ Sizzle.uniqueSort = function( results ) {
12211221
}
12221222

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

12271227
return results;

0 commit comments

Comments
 (0)