Skip to content

Commit d403a0d

Browse files
committed
Final touches for the 7.3.0 release
1 parent 04e14e2 commit d403a0d

File tree

8 files changed

+1395
-561
lines changed

8 files changed

+1395
-561
lines changed

dist/.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@ indent_size = 2
88
indent_style = space
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
11-
12-
[*.md]
13-
trim_trailing_whitespace = false

dist/doc/extend.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -476,11 +476,10 @@ and you can validate your markup with the [Card validator](https://cards-dev.twi
476476
<meta name="twitter:image" content="https://www.example.com/path/to/image.jpg">
477477
```
478478

479-
### Google+ / Schema.org
479+
### Schema.org
480480

481481
Google also provides a snippet specification that serves a similar
482-
purpose to Facebook's Open Graph or Twitter Cards. While it helps you
483-
to control information displayed on Google+, this metadata is a subset
482+
purpose to Facebook's Open Graph or Twitter Cards. This metadata is a subset
484483
of [schema.org's microdata vocabulary](https://schema.org/), which
485484
covers many other schemas that can describe the content of your pages
486485
to search engines. For this reason, this metadata is more generic for
@@ -493,7 +492,7 @@ Also, please note that this markup requires to add attributes to your
493492
top `html` tag.
494493

495494
```html
496-
<html class="no-js" lang="" itemscope itemtype="http://schema.org/Article">
495+
<html class="no-js" lang="" itemscope itemtype="https://schema.org/Article">
497496
<head>
498497

499498
<link rel="author" href="">

dist/doc/html.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ using a polyfill CDN service, like [cdn.polyfill.io](https://cdn.polyfill.io/),
128128
just put it before the other scripts in the bottom of the page:
129129

130130
```html
131-
<script src="js/vendor/modernizr-3.7.1.min.js"></script>
131+
<script src="js/vendor/modernizr-3.8.0.min.js"></script>
132132
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script>
133133
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
134134
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.1.min.js"><\/script>')</script>

package-lock.json

+1,379-537
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"test": "gulp archive && mocha --require @babel/register --reporter spec --timeout 5000"
2222
},
2323
"devDependencies": {
24-
"@babel/core": "^7.6.4",
25-
"@babel/preset-env": "^7.6.3",
26-
"@babel/register": "^7.6.2",
24+
"@babel/core": "^7.7.2",
25+
"@babel/preset-env": "^7.7.1",
26+
"@babel/register": "^7.7.0",
2727
"apache-server-configs": "^3.2.1",
2828
"archiver": "^3.1.1",
2929
"del": "^5.1.0",
30-
"eslint": "^6.5.1",
30+
"eslint": "^6.6.0",
3131
"eslint-config-recommended": "^4.0.0",
32-
"eslint-plugin-mocha": "^6.2.0",
33-
"glob": "^7.1.5",
32+
"eslint-plugin-mocha": "^6.2.1",
33+
"glob": "^7.1.6",
3434
"gulp": "^4.0.2",
3535
"gulp-autoprefixer": "^7.0.1",
3636
"gulp-eslint": "^6.0.0",
@@ -43,11 +43,11 @@
4343
"mocha": "^6.2.2",
4444
"modernizr": "3.8.0",
4545
"normalize.css": "8.0.1",
46-
"ssri": "^7.0.1",
46+
"ssri": "^7.1.0",
4747
"strip-json-comments": "^3.0.1"
4848
},
4949
"engines": {
50-
"node": ">=8",
50+
"node": ">=10",
5151
"npm": ">=3"
5252
},
5353
"babel": {

src/.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@ indent_size = 2
88
indent_style = space
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
11-
12-
[*.md]
13-
trim_trailing_whitespace = false

src/doc/extend.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -476,11 +476,10 @@ and you can validate your markup with the [Card validator](https://cards-dev.twi
476476
<meta name="twitter:image" content="https://www.example.com/path/to/image.jpg">
477477
```
478478

479-
### Google+ / Schema.org
479+
### Schema.org
480480

481481
Google also provides a snippet specification that serves a similar
482-
purpose to Facebook's Open Graph or Twitter Cards. While it helps you
483-
to control information displayed on Google+, this metadata is a subset
482+
purpose to Facebook's Open Graph or Twitter Cards. This metadata is a subset
484483
of [schema.org's microdata vocabulary](https://schema.org/), which
485484
covers many other schemas that can describe the content of your pages
486485
to search engines. For this reason, this metadata is more generic for
@@ -493,7 +492,7 @@ Also, please note that this markup requires to add attributes to your
493492
top `html` tag.
494493

495494
```html
496-
<html class="no-js" lang="" itemscope itemtype="http://schema.org/Article">
495+
<html class="no-js" lang="" itemscope itemtype="https://schema.org/Article">
497496
<head>
498497

499498
<link rel="author" href="">

src/doc/html.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ using a polyfill CDN service, like [cdn.polyfill.io](https://cdn.polyfill.io/),
128128
just put it before the other scripts in the bottom of the page:
129129

130130
```html
131-
<script src="js/vendor/modernizr-3.7.1.min.js"></script>
131+
<script src="js/vendor/modernizr-3.8.0.min.js"></script>
132132
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script>
133133
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
134134
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.1.min.js"><\/script>')</script>

0 commit comments

Comments
 (0)