Skip to content
This repository was archived by the owner on Jan 16, 2020. It is now read-only.

Commit 2e3e3e4

Browse files
committed
Build: Upgrade to grunt-jquery-content 0.11.1
1 parent 1281dd1 commit 2e3e3e4

File tree

3 files changed

+38
-38
lines changed

3 files changed

+38
-38
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"grunt": "0.3.17",
1919
"grunt-wordpress": "1.0.7",
2020
"grunt-check-modules": "0.1.0",
21-
"grunt-jquery-content": "0.9.0",
21+
"grunt-jquery-content": "0.11.1",
2222
"grunt-clean": "0.3.0",
2323
"simple-log": "1.1.0"
2424
}

pages/docs/package-manifest.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ The files must be actual JSON, not just a JavaScript object literal.
1616

1717
### Required Fields
1818

19-
* <a href="#field-name">name</a>
20-
* <a href="#field-version">version</a>
21-
* <a href="#field-title">title</a>
22-
* <a href="#field-author">author</a>
23-
* <a href="#field-licenses">licenses</a>
24-
* <a href="#field-dependencies">dependencies</a>
19+
* <a href="#name">name</a>
20+
* <a href="#version">version</a>
21+
* <a href="#title">title</a>
22+
* <a href="#author">author</a>
23+
* <a href="#licenses">licenses</a>
24+
* <a href="#dependencies">dependencies</a>
2525

2626
### Optional Fields
2727

28-
* <a href="#field-description">description</a>
29-
* <a href="#field-keywords">keywords</a>
30-
* <a href="#field-homepage">homepage</a>
31-
* <a href="#field-docs">docs</a>
32-
* <a href="#field-demo">demo</a>
33-
* <a href="#field-download">download</a>
34-
* <a href="#field-bugs">bugs</a>
35-
* <a href="#field-maintainers">maintainers</a>
28+
* <a href="#description">description</a>
29+
* <a href="#keywords">keywords</a>
30+
* <a href="#homepage">homepage</a>
31+
* <a href="#docs">docs</a>
32+
* <a href="#demo">demo</a>
33+
* <a href="#download">download</a>
34+
* <a href="#bugs">bugs</a>
35+
* <a href="#maintainers">maintainers</a>
3636

37-
### <a name="field-name">name</a>
37+
### name
3838

3939
The *most* important things in your manifest file are the name and version fields.
4040
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
5454
Site, either consider renaming your plugin or namespacing it. For example, jQuery UI
5555
plugins are listed with the "ui." prefix (e.g. ui.dialog, ui.autocomplete).
5656

57-
### <a name="field-version">version</a>
57+
### version
5858

5959
The *most* important things in your manifest file are the name and version fields.
6060
The name and version together form an identifier that is assumed
@@ -64,19 +64,19 @@ per [node-semver](https://github.com/isaacs/node-semver).
6464

6565
See [Specifying Versions](#specifying-versions).
6666

67-
### <a name="field-title">title</a>
67+
### title
6868

6969
A nice complete and pretty title of your plugin. This will be used for the page
7070
title and top-level heading on your plugin's page. Include jQuery (if you want) and
71-
spaces and mixed case, unlike [name](#field-name).
71+
spaces and mixed case, unlike [name](#name).
7272

73-
### <a name="field-author">author</a>
73+
### author
7474

7575
One person.
7676

7777
See [People Fields](#people-fields).
7878

79-
### <a name="field-licenses">licenses</a>
79+
### licenses
8080

8181
Array of licenses under which the plugin is provided. Each license is a hash with
8282
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
9090
]
9191
```
9292

93-
### <a name="field-dependencies">dependencies</a>
93+
### dependencies
9494

9595
Dependencies are specified with a simple hash of package name to version
9696
range. The version range is EITHER a string which has one or more
@@ -106,46 +106,46 @@ of each library you depend on.
106106

107107
You must list at least one dependency, `jquery` (note that it's lower-case).
108108

109-
### <a name="field-description">description</a>
109+
### description
110110

111111
Put a description in it. It's a string. This helps people discover your
112112
plugin, as it's listed on the jQuery Plugins Site.
113113

114-
### <a name="field-keywords">keywords</a>
114+
### keywords
115115

116116
Put keywords in it. It's an array of strings. This helps people
117117
discover your plugin as it's listed on the jQuery Plugins Site.
118118
Keywords may only contain letters, numbers, hyphens, and dots.
119119

120-
### <a name="field-homepage">homepage</a>
120+
### homepage
121121

122122
The url to the plugin homepage.
123123

124-
### <a name="field-docs">docs</a>
124+
### docs
125125

126126
The url to the plugin documentation.
127127

128-
### <a name="field-demo">demo</a>
128+
### demo
129129

130130
The url to the plugin demo or demos.
131131

132-
### <a name="field-download">download</a>
132+
### download
133133

134134
The url to download the plugin. A download URL will be automatically generated
135135
based on the tag in GitHub, but you can specify a custom URL if you'd prefer
136136
to send users to your own site.
137137

138-
### <a name="field-bugs">bugs</a>
138+
### bugs
139139

140140
The url to the bug tracker for the plugin.
141141

142-
### <a name="field-maintainers">maintainers</a>
142+
### maintainers
143143

144144
An array of people.
145145

146146
See [People Fields](#people-fields).
147147

148-
## <a name="people-fields">People Fields</a>
148+
## People Fields
149149

150150
A "person" is an object with a "name" field and optionally "url" and
151151
"email", like this:
@@ -162,7 +162,7 @@ Both the email and url are optional.
162162

163163
---
164164

165-
## <a name="specifying-versions">Specifying Versions</a>
165+
## Specifying Versions
166166

167167
Version range descriptors may be any of the following styles, where "version"
168168
is a semver compatible version identifier.
@@ -198,7 +198,7 @@ For example, these are all valid:
198198
}
199199
```
200200

201-
### <a name="tilde-version-ranges">Tilde Version Ranges</a>
201+
### Tilde Version Ranges
202202

203203
A range specifier starting with a tilde `~` character is matched against
204204
a version in the following fashion.
@@ -212,7 +212,7 @@ For example, the following are equivalent:
212212
* `"~1.2" = ">=1.2.0 <1.3.0"`
213213
* `"~1" = ">=1.0.0 <2.0.0"`
214214

215-
### <a name="x-version-ranges">X Version Ranges</a>
215+
### X Version Ranges
216216

217217
An "x" in a version range specifies that the version number must start
218218
with the supplied digits, but any digit may be used in place of the x.
@@ -228,7 +228,7 @@ The following are equivalent:
228228
You may not supply a comparator with a version containing an x. Any
229229
digits after the first "x" are ignored.
230230

231-
### <a name="sample">Sample manifest</a>
231+
### Sample manifest
232232

233233
**color.jquery.json**
234234

pages/docs/publish.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ to `http://plugins.jquery.com/postreceive-hook`.
1414
## Add a Manifest to your Repository
1515

1616
The jQuery Plugins Registry will look in the root level of your repository for
17-
any files named `*.jquery.json`. You will want to create
18-
<code><em>yourplugin</em>.jquery.json</code> according to the [package manifest
17+
any files named `*.jquery.json`. You will want to create
18+
`*yourplugin*.jquery.json` according to the [package manifest
1919
specification](/docs/package-manifest/). Use an online JSON verifier such as
2020
[JSONlint](http://jsonlint.com) to make sure the file is valid. You are now
2121
ready to publish your plugin!
2222

23-
<h2>Validate Your Manifest File Here</h2>
23+
## Validate Your Manifest File Here
2424

2525
<div>
2626
Upload your manifest file to check for common errors:

0 commit comments

Comments
 (0)