From 1281dd1fd1286ad29c76b489aac4a62a972dd0a7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 31 Dec 2013 14:56:01 -0500
Subject: [PATCH 01/24] Docs: Added CONTRIBUTING.md
---
CONTRIBUTING.md | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 CONTRIBUTING.md
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..479c2b8
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,5 @@
+Welcome! Thanks for your interest in contributing to plugins.jquery.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](http://contribute.jquery.org/web-sites/) and [code](http://contribute.jquery.org/code).
+
+You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).
+
+You can find us on [IRC](http://irc.jquery.org), specifically in #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/).
From 2e3e3e4f55aa32a49575b8bce15a14bc6bfe0526 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 6 Jan 2014 15:08:17 -0500
Subject: [PATCH 02/24] Build: Upgrade to grunt-jquery-content 0.11.1
---
package.json | 2 +-
pages/docs/package-manifest.md | 68 +++++++++++++++++-----------------
pages/docs/publish.md | 6 +--
3 files changed, 38 insertions(+), 38 deletions(-)
diff --git a/package.json b/package.json
index f8ae077..28625e4 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"grunt": "0.3.17",
"grunt-wordpress": "1.0.7",
"grunt-check-modules": "0.1.0",
- "grunt-jquery-content": "0.9.0",
+ "grunt-jquery-content": "0.11.1",
"grunt-clean": "0.3.0",
"simple-log": "1.1.0"
}
diff --git a/pages/docs/package-manifest.md b/pages/docs/package-manifest.md
index 8b11131..8a41b02 100644
--- a/pages/docs/package-manifest.md
+++ b/pages/docs/package-manifest.md
@@ -16,25 +16,25 @@ The files must be actual JSON, not just a JavaScript object literal.
### Required Fields
-* name
-* version
-* title
-* author
-* licenses
-* dependencies
+* name
+* version
+* title
+* author
+* licenses
+* dependencies
### Optional Fields
-* description
-* keywords
-* homepage
-* docs
-* demo
-* download
-* bugs
-* maintainers
+* description
+* keywords
+* homepage
+* docs
+* demo
+* download
+* bugs
+* maintainers
-### name
+### name
The *most* important things in your manifest file are the name and version fields.
The name and version together form an identifier that is assumed
@@ -54,7 +54,7 @@ to see if there's something by that name already, before you get too attached to
Site, either consider renaming your plugin or namespacing it. For example, jQuery UI
plugins are listed with the "ui." prefix (e.g. ui.dialog, ui.autocomplete).
-### version
+### version
The *most* important things in your manifest file are the name and version fields.
The name and version together form an identifier that is assumed
@@ -64,19 +64,19 @@ per [node-semver](https://github.com/isaacs/node-semver).
See [Specifying Versions](#specifying-versions).
-### title
+### title
A nice complete and pretty title of your plugin. This will be used for the page
title and top-level heading on your plugin's page. Include jQuery (if you want) and
-spaces and mixed case, unlike [name](#field-name).
+spaces and mixed case, unlike [name](#name).
-### author
+### author
One person.
See [People Fields](#people-fields).
-### licenses
+### licenses
Array of licenses under which the plugin is provided. Each license is a hash with
a url property linking to the actual text and an optional "type" property specifying the type of license. If the license is one of the [official open source licenses](http://www.opensource.org/licenses/alphabetical), the official license name or its abbreviation may be explicated with the "type" property.
@@ -90,7 +90,7 @@ a url property linking to the actual text and an optional "type" property specif
]
```
-### dependencies
+### dependencies
Dependencies are specified with a simple hash of package name to version
range. The version range is EITHER a string which has one or more
@@ -106,46 +106,46 @@ of each library you depend on.
You must list at least one dependency, `jquery` (note that it's lower-case).
-### description
+### description
Put a description in it. It's a string. This helps people discover your
plugin, as it's listed on the jQuery Plugins Site.
-### keywords
+### keywords
Put keywords in it. It's an array of strings. This helps people
discover your plugin as it's listed on the jQuery Plugins Site.
Keywords may only contain letters, numbers, hyphens, and dots.
-### homepage
+### homepage
The url to the plugin homepage.
-### docs
+### docs
The url to the plugin documentation.
-### demo
+### demo
The url to the plugin demo or demos.
-### download
+### download
The url to download the plugin. A download URL will be automatically generated
based on the tag in GitHub, but you can specify a custom URL if you'd prefer
to send users to your own site.
-### bugs
+### bugs
The url to the bug tracker for the plugin.
-### maintainers
+### maintainers
An array of people.
See [People Fields](#people-fields).
-## People Fields
+## People Fields
A "person" is an object with a "name" field and optionally "url" and
"email", like this:
@@ -162,7 +162,7 @@ Both the email and url are optional.
---
-## Specifying Versions
+## Specifying Versions
Version range descriptors may be any of the following styles, where "version"
is a semver compatible version identifier.
@@ -198,7 +198,7 @@ For example, these are all valid:
}
```
-### Tilde Version Ranges
+### Tilde Version Ranges
A range specifier starting with a tilde `~` character is matched against
a version in the following fashion.
@@ -212,7 +212,7 @@ For example, the following are equivalent:
* `"~1.2" = ">=1.2.0 <1.3.0"`
* `"~1" = ">=1.0.0 <2.0.0"`
-### X Version Ranges
+### X Version Ranges
An "x" in a version range specifies that the version number must start
with the supplied digits, but any digit may be used in place of the x.
@@ -228,7 +228,7 @@ The following are equivalent:
You may not supply a comparator with a version containing an x. Any
digits after the first "x" are ignored.
-### Sample manifest
+### Sample manifest
**color.jquery.json**
diff --git a/pages/docs/publish.md b/pages/docs/publish.md
index f80023f..0f32cd1 100644
--- a/pages/docs/publish.md
+++ b/pages/docs/publish.md
@@ -14,13 +14,13 @@ to `http://plugins.jquery.com/postreceive-hook`.
## Add a Manifest to your Repository
The jQuery Plugins Registry will look in the root level of your repository for
-any files named `*.jquery.json`. You will want to create
-yourplugin.jquery.json according to the [package manifest
+any files named `*.jquery.json`. You will want to create
+`*yourplugin*.jquery.json` according to the [package manifest
specification](/docs/package-manifest/). Use an online JSON verifier such as
[JSONlint](http://jsonlint.com) to make sure the file is valid. You are now
ready to publish your plugin!
-Validate Your Manifest File Here
+## Validate Your Manifest File Here
Upload your manifest file to check for common errors:
From c13ee7145f5070a8cf36d8253352597d2358c8de Mon Sep 17 00:00:00 2001
From: Boris Lykah
Date: Fri, 10 Jan 2014 10:05:42 -0500
Subject: [PATCH 03/24] Docs: Fix a typo
Closes: gh-155
---
pages/docs/names.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/docs/names.md b/pages/docs/names.md
index c1d0295..00263fd 100644
--- a/pages/docs/names.md
+++ b/pages/docs/names.md
@@ -7,7 +7,7 @@ your plugin. The name is a unique identifier that distinguishes your plugin
from all other plugins. This is different from the title of your plugin, which
you can think of as the display name.
-**Plugin names may only contain letters, numbers, hypens, dots, and underscores.**
+**Plugin names may only contain letters, numbers, hyphens, dots, and underscores.**
We encourage you to follow a few simple tips as well:
From bd074f79b09d7f796492d92ddc1fd3e8e160e3f0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 10 Jan 2014 11:40:51 -0500
Subject: [PATCH 04/24] 1.2.4
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 28625e4..3fba43c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.3",
+ "version": "1.2.4",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From 19388ab0b1098f7f320e2a9dfb8bd4c2f9f2899e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 21 Feb 2014 09:13:09 -0500
Subject: [PATCH 05/24] Docs: Use jQuery Plugins service hook instead of web
hook
Fixes gh-156
---
pages/docs/publish.md | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/pages/docs/publish.md b/pages/docs/publish.md
index 0f32cd1..5ef19a6 100644
--- a/pages/docs/publish.md
+++ b/pages/docs/publish.md
@@ -4,12 +4,13 @@
Publishing your plugin on the site is a three step process:
-## Add a Post-Receive Hook
+## Add a Service Hook
-First, you'll need to create a post-receive hook on GitHub. Just follow the
-[step-by-step guide for adding a
-webhook](https://help.github.com/articles/post-receive-hooks) and set the URL
-to `http://plugins.jquery.com/postreceive-hook`.
+First, you'll need to enable the jQuery Plugins service hook on GitHub. On the
+settings page for your repository, click the Webhooks & Services link, then
+click the Configure services button. Scroll down to find the jQuery Plugins
+service and enable it (there's no config, just check the Active checkbox and
+click the Update settings button).
## Add a Manifest to your Repository
From ee21599bce4eeb2e0355b4984052bea9964cd2c5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 21 Feb 2014 09:13:55 -0500
Subject: [PATCH 06/24] 1.2.5
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 3fba43c..fb4bead 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.4",
+ "version": "1.2.5",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From 24c01a8ccd40bb52b18254aa7022a4d17ec95013 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 14 Apr 2014 13:46:36 -0400
Subject: [PATCH 07/24] Build: Normalize line endings
---
.gitattributes | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 .gitattributes
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..b7ca95b
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,5 @@
+# Auto detect text files and perform LF normalization
+* text=auto
+
+# JS files must always use LF for tools to work
+*.js eol=lf
From 11ee7ad231a0194b90d28afac7aeced35c13f617 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Thu, 15 May 2014 19:13:32 -0400
Subject: [PATCH 08/24] Build: Use vagrant for sample config
---
config-sample.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config-sample.json b/config-sample.json
index dc4f393..90bce25 100644
--- a/config-sample.json
+++ b/config-sample.json
@@ -2,7 +2,7 @@
"repoDir": "/tmp/plugin-repos",
"pluginsDb": "plugins.db",
"wordpress": {
- "url": "local.plugins.jquery.com",
+ "url": "vagrant.plugins.jquery.com",
"username": "admin",
"password": "secret"
}
From 0da761b2c4a067458d11ba1f73ed9df78551a65a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 27 May 2014 15:31:46 -0400
Subject: [PATCH 09/24] Build: Update license
Closes gh-157
---
LICENSE-MIT.txt => LICENSE.txt | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
rename LICENSE-MIT.txt => LICENSE.txt (71%)
diff --git a/LICENSE-MIT.txt b/LICENSE.txt
similarity index 71%
rename from LICENSE-MIT.txt
rename to LICENSE.txt
index 1b5c731..5549c20 100644
--- a/LICENSE-MIT.txt
+++ b/LICENSE.txt
@@ -1,8 +1,14 @@
-Copyright (c) 2013 jQuery Foundation, http://jquery.org/
+Copyright 2011, 2014 jQuery Foundation and other contributors,
+https://jquery.org/
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
-and logs, available at http://github.com/jquery/plugins.jquery.com
+available at https://github.com/jquery/plugins.jquery.com
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -22,3 +28,10 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+All files located in the node_modules directory are externally
+maintained libraries used by this software which have their own
+licenses; we recommend you read them, as their terms may differ from the
+terms above.
From 0aa255a0d64e6d68c1a446ecc1a4fa9a34f66a5c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 18 Jul 2014 13:09:17 -0400
Subject: [PATCH 10/24] Docs: post-receive hook -> service hook
---
pages/docs/publish.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pages/docs/publish.md b/pages/docs/publish.md
index 5ef19a6..a35fcd8 100644
--- a/pages/docs/publish.md
+++ b/pages/docs/publish.md
@@ -36,9 +36,9 @@ ready to publish your plugin!
## Publishing a Version
-After the post-receive hook is setup and your manifest has been added,
+After the service hook is setup and your manifest has been added,
publishing your plugin is as simple as tagging the version in git and pushing
-the tag to GitHub. The post-receive hook will notify the plugins site that a
+the tag to GitHub. The service hook will notify the plugins site that a
new tag is available and the plugins site will take care of the rest!
```bash
From 134b4e3cd253c695342d6377f08ccff2e759f8d6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 18 Jul 2014 13:09:41 -0400
Subject: [PATCH 11/24] 1.2.6
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index fb4bead..7db673e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.5",
+ "version": "1.2.6",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From 707c44ae1bd9e3327cc654f8404c2254f97fed3c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 19 Aug 2014 16:56:59 -0400
Subject: [PATCH 12/24] Build: Upgrade to grunt-jquery-content 0.12.0
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 7db673e..7b574bc 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"grunt": "0.3.17",
"grunt-wordpress": "1.0.7",
"grunt-check-modules": "0.1.0",
- "grunt-jquery-content": "0.11.1",
+ "grunt-jquery-content": "0.12.0",
"grunt-clean": "0.3.0",
"simple-log": "1.1.0"
}
From af258df92a92f71a57b9c78312ad2012c62a751a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 19 Aug 2014 16:57:05 -0400
Subject: [PATCH 13/24] 1.2.7
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 7b574bc..9815903 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.6",
+ "version": "1.2.7",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From c7886ade31d6a821f4c75d4ba13f6b3926f2737f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Sat, 13 Sep 2014 14:29:58 -0500
Subject: [PATCH 14/24] Build: Upgrade to grunt-wordpress 1.1.0 and
grunt-jquery-content 0.12.1
---
package.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package.json b/package.json
index 9815903..fa0a4fe 100644
--- a/package.json
+++ b/package.json
@@ -16,9 +16,9 @@
"rimraf": "2.1.1",
"wordpress": "0.1.3",
"grunt": "0.3.17",
- "grunt-wordpress": "1.0.7",
+ "grunt-wordpress": "1.1.0",
"grunt-check-modules": "0.1.0",
- "grunt-jquery-content": "0.12.0",
+ "grunt-jquery-content": "0.12.1",
"grunt-clean": "0.3.0",
"simple-log": "1.1.0"
}
From 08c3f150ec1ad0a2fd7aaed253606b0aa05912e9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Sat, 13 Sep 2014 16:37:59 -0500
Subject: [PATCH 15/24] 1.2.8
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index fa0a4fe..aa33a3b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.7",
+ "version": "1.2.8",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From 306e2def81e88cd575b50edcfc4ced4ccc58d150 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 30 Sep 2014 15:07:21 -0400
Subject: [PATCH 16/24] Build: Upgrade to grunt-wordpress 1.2.1 and
grunt-jquery-content 0.13.0
---
package.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package.json b/package.json
index aa33a3b..679f6d6 100644
--- a/package.json
+++ b/package.json
@@ -16,9 +16,9 @@
"rimraf": "2.1.1",
"wordpress": "0.1.3",
"grunt": "0.3.17",
- "grunt-wordpress": "1.1.0",
+ "grunt-wordpress": "1.2.1",
"grunt-check-modules": "0.1.0",
- "grunt-jquery-content": "0.12.1",
+ "grunt-jquery-content": "0.13.0",
"grunt-clean": "0.3.0",
"simple-log": "1.1.0"
}
From 4579a6e7cb108a754fd0c2940a210e7da096fdef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 10 Oct 2014 16:31:21 -0400
Subject: [PATCH 17/24] Manager: Just spin forever
---
scripts/manager.js | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/scripts/manager.js b/scripts/manager.js
index 9f70173..d2373fd 100644
--- a/scripts/manager.js
+++ b/scripts/manager.js
@@ -1,3 +1,8 @@
+function wait() {
+ setTimeout( wait, 1000 );
+}
+return wait();
+
var path = require( "path" ),
spawn = require( "child_process" ).spawn,
logger = require( "../lib/logger" ),
From 41598a0cd2da0ae3059bbfec1cd26cf103b142a0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 10 Oct 2014 16:32:28 -0400
Subject: [PATCH 18/24] 1.3.0
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 679f6d6..c9b455d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.2.8",
+ "version": "1.3.0",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",
From 0b40a424b130ba5f942813c4bbf4dac37f8d5be2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 2 Dec 2014 16:15:22 -0500
Subject: [PATCH 19/24] Build: Replace grunt-clean with rimraf
---
grunt.js | 16 ++++++++--------
package.json | 1 -
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/grunt.js b/grunt.js
index 6e5c9f6..5e8bd23 100644
--- a/grunt.js
+++ b/grunt.js
@@ -1,19 +1,16 @@
-var config = require( "./lib/config" );
-var path = require( "path" );
+var path = require( "path" ),
+ rimraf = require( "rimraf" ),
+ config = require( "./lib/config" );
module.exports = function( grunt ) {
var async = grunt.utils.async;
grunt.loadNpmTasks( "grunt-wordpress" );
-grunt.loadNpmTasks( "grunt-clean" );
grunt.loadNpmTasks( "grunt-jquery-content" );
grunt.loadNpmTasks( "grunt-check-modules" );
grunt.initConfig({
- clean: {
- wordpress: "dist/"
- },
lint: {
grunt: "grunt.js",
src: [ "lib/**", "scripts/**" ]
@@ -42,6 +39,10 @@ grunt.initConfig({
}, config.wordpress )
});
+grunt.registerTask( "clean", function() {
+ rimraf.sync( "dist" );
+});
+
// We only want to sync the documentation, so we override wordpress-get-postpaths
// to only find pages. This ensures that we don't delete all of the plugin posts.
grunt.registerHelper( "wordpress-get-postpaths", function( fn ) {
@@ -113,8 +114,7 @@ grunt.registerTask( "sync-docs", function() {
// clean-all will delete EVERYTHING, including the plugin registery. This is
// useful only for development if you want a clean slate to test from.
grunt.registerTask( "clean-all", function() {
- var rimraf = require( "rimraf" ),
- retry = require( "./lib/retrydb" );
+ var retry = require( "./lib/retrydb" );
// clean repo checkouts
rimraf.sync( config.repoDir );
diff --git a/package.json b/package.json
index c9b455d..fd205e7 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,6 @@
"grunt-wordpress": "1.2.1",
"grunt-check-modules": "0.1.0",
"grunt-jquery-content": "0.13.0",
- "grunt-clean": "0.3.0",
"simple-log": "1.1.0"
}
}
From c77032d5dfe1fbe7a16bad308db7c1c44bd330f0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 2 Dec 2014 16:16:35 -0500
Subject: [PATCH 20/24] Build: Remove watch task
---
grunt.js | 6 ------
1 file changed, 6 deletions(-)
diff --git a/grunt.js b/grunt.js
index 5e8bd23..9dbff99 100644
--- a/grunt.js
+++ b/grunt.js
@@ -19,12 +19,6 @@ grunt.initConfig({
grunt: { options: grunt.file.readJSON( ".jshintrc" ) },
src: { options: grunt.file.readJSON( ".jshintrc" ) }
},
- watch: {
- docs: {
- files: "pages/**",
- tasks: "docs"
- }
- },
test: {
files: [ "test/**/*.js" ]
},
From 51a4dbee0d9b3bd802d809eab3b0c7e32653b118 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 2 Dec 2014 16:17:10 -0500
Subject: [PATCH 21/24] Build: Remove dates from copyright notice
---
LICENSE.txt | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/LICENSE.txt b/LICENSE.txt
index 5549c20..8ec0732 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,5 +1,4 @@
-Copyright 2011, 2014 jQuery Foundation and other contributors,
-https://jquery.org/
+Copyright jQuery Foundation and other contributors, https://jquery.org/
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
From 9a1807464101c761c0d2a62026f5a27551cafc93 Mon Sep 17 00:00:00 2001
From: Aurelio De Rosa
Date: Mon, 20 Jun 2016 12:16:18 +0100
Subject: [PATCH 22/24] Publish: Added note about the plugins website's
deprecation
Fixes https://github.com/jquery/jquery.com/issues/134
---
pages/docs/publish.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/pages/docs/publish.md b/pages/docs/publish.md
index a35fcd8..f9648ca 100644
--- a/pages/docs/publish.md
+++ b/pages/docs/publish.md
@@ -4,6 +4,10 @@
Publishing your plugin on the site is a three step process:
+
+
## Add a Service Hook
First, you'll need to enable the jQuery Plugins service hook on GitHub. On the
From 2b1e812796715ba631d32315bf46473a91d98687 Mon Sep 17 00:00:00 2001
From: Aurelio De Rosa
Date: Mon, 27 Jun 2016 13:23:42 +0100
Subject: [PATCH 23/24] fixup! Updated based on comments
---
pages/docs/publish.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pages/docs/publish.md b/pages/docs/publish.md
index f9648ca..b3b3cb5 100644
--- a/pages/docs/publish.md
+++ b/pages/docs/publish.md
@@ -2,12 +2,12 @@
"title": "Publishing Your Plugin"
}
-Publishing your plugin on the site is a three step process:
-
+Publishing your plugin on the site is a three step process:
+
## Add a Service Hook
First, you'll need to enable the jQuery Plugins service hook on GitHub. On the
From 7cf6c209efe2e40f67a8ff89bbb60a16cff49208 Mon Sep 17 00:00:00 2001
From: Dave Methvin
Date: Mon, 28 Aug 2017 16:20:38 -0400
Subject: [PATCH 24/24] 1.3.1
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index fd205e7..088f01f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "plugins.jquery.com",
- "version": "1.3.0",
+ "version": "1.3.1",
"author": "jQuery Project",
"description": "The official jQuery plugins site",
"homepage": "https://github.com/jquery/plugins.jquery.com",