Skip to content

Commit 243ca51

Browse files
committed
Updates example dependencies
1 parent 1a4aed5 commit 243ca51

8 files changed

Lines changed: 1297 additions & 1770 deletions

File tree

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### macOS template
3+
# General
4+
.DS_Store
5+
.AppleDouble
6+
.LSOverride
7+
8+
# Icon must end with two \r
9+
Icon
10+
11+
# Thumbnails
12+
._*
13+
14+
# Files that might appear in the root of a volume
15+
.DocumentRevisions-V100
16+
.fseventsd
17+
.Spotlight-V100
18+
.TemporaryItems
19+
.Trashes
20+
.VolumeIcon.icns
21+
.com.apple.timemachine.donotpresent
22+
23+
# Directories potentially created on remote AFP share
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk
29+
30+
.idea/.name
31+
.idea/compiler.xml
32+
.idea/copyright/
33+
.idea/encodings.xml
34+
.idea/misc.xml
35+
.idea/modules.xml
36+
.idea/vcs.xml
37+
.idea/workspace.xml
38+
microdata-template.iml
39+
/.idea/uiDesigner.xml
40+
/example/minimal-webpack/dist/bundle.js
41+
/example/minimal-webpack/node_modules/
42+
/example/minimal-requirejs/node_modules/
43+
/example/minimal-requirejs/yarn.lock

LICENSE renamed to LICENSE.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
22

3-
Copyright (c) 2016 Peter Sylwester
3+
Copyright (c) 2019 Peter Sylwester
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,5 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
22-
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###### This is released software. Please **[log issues](https://github.com/ptrdo/microdata-template/issues)** found.
2-
# microdata-template `v2.0.3`
2+
# microdata-template `v2.1.0`
33
An implementation of HTML template by way of the microdata mechanism.
44
### The Gist
55
This JavaScript module should simplify adding dynamic content to HTML documents while staying true to the recommendations of web standards. There are no dependencies here except the JavaScript [ECMA5 standard](http://www.ecma-international.org/ecma-262/5.1/) which enjoys [nearly universal support](http://kangax.github.io/compat-table/es5/) in modern browsers. Also, since the HTML recommendations for integral technologies such as [template](https://www.w3.org/TR/html52/semantics-scripting.html#the-template-element) and [microdata](https://www.w3.org/TR/microdata/) are variably implemented by modern browsers, this module serves as a [polyfill](https://en.wikipedia.org/wiki/Polyfill) to assure reliable results. Best of all, this methodology encourages the writing of low-dependency JavaScript and perfectly valid HTML — even within fully-functional templated markup.

example/minimal-requirejs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "minimal-requirejs",
3-
"version": "2.0.3",
4-
"description": "an example implementation of microdata-template",
3+
"version": "2.1.0",
4+
"description": "An example implementation of microdata-template",
55
"main": "index.js",
66
"license": "MIT",
77
"dependencies": {
8-
"requirejs": "^2.3.5",
8+
"requirejs": "^2.3.6",
99
"requirejs-json": "^0.0.3",
1010
"requirejs-text": "^2.0.15"
1111
}

0 commit comments

Comments
 (0)