Skip to content

Commit 883e8de

Browse files
committed
Add a bower.json to make it easier to update the HTML document framework.
1 parent cfdeb32 commit 883e8de

File tree

7 files changed

+36
-50
lines changed

7 files changed

+36
-50
lines changed

Diff for: bower.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "cxx-fundamentals-ts",
3+
"version": "2.0.0",
4+
"homepage": "https://github.com/cplusplus/fundamentals-ts",
5+
"authors": [
6+
"Jeffrey Yasskin <[email protected]>"
7+
],
8+
"description": "C++ Library Fundamentals TS",
9+
"main": "main.html",
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"test",
15+
"tests"
16+
],
17+
"dependencies": {
18+
"cxx-html-doc-framework": "cplusplus/html-doc-framework"
19+
}
20+
}

Diff for: bower_components/core-component-page/.bower.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
"name": "core-component-page",
33
"private": true,
44
"dependencies": {
5-
"webcomponentsjs": "Polymer/webcomponentsjs#^0.5",
5+
"webcomponentsjs": "Polymer/webcomponentsjs",
66
"polymer": "Polymer/polymer#^0.5"
77
},
8-
"version": "0.5.5",
8+
"version": "0.5.6",
99
"homepage": "https://github.com/Polymer/core-component-page",
10-
"_release": "0.5.5",
10+
"_release": "0.5.6",
1111
"_resolution": {
1212
"type": "version",
13-
"tag": "0.5.5",
14-
"commit": "f91588e0297bb3e8e723d4558ab015cf82885571"
13+
"tag": "0.5.6",
14+
"commit": "01a1d3968d7ece144783bcd03bc87b18344265e3"
1515
},
1616
"_source": "git://github.com/Polymer/core-component-page.git",
1717
"_target": "^0.5.0",

Diff for: bower_components/core-component-page/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
core-component-page
22
===================
33

4-
See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-component-page) for more information.
4+
**This element is compatible with Polymer 0.5 and lower only, and will be deprecated.**
5+
You can check out a similar 0.8-compatible version of this element at [https://github.com/polymerelements/iron-components-page](https://github.com/polymerelements/iron-component-page)
6+
7+
See the [component page](https://www.polymer-project.org/0.5/docs/elements/core-component-page.html) for more information.
58

69
Note: this is the vulcanized version of [`core-component-page-dev`](https://github.com/Polymer/core-component-page-dev) (the source).

Diff for: bower_components/core-component-page/bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "core-component-page",
33
"private": true,
44
"dependencies": {
5-
"webcomponentsjs": "Polymer/webcomponentsjs#^0.5",
5+
"webcomponentsjs": "Polymer/webcomponentsjs",
66
"polymer": "Polymer/polymer#^0.5"
77
},
8-
"version": "0.5.5"
8+
"version": "0.5.6"
99
}

Diff for: bower_components/core-component-page/core-component-page.html

+1-37
Large diffs are not rendered by default.

Diff for: bower_components/cxx-html-doc-framework/.bower.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"commit": "355de1737c3e1ee7e941b1ccf7ab0a69d5f63dea"
2222
},
2323
"_source": "git://github.com/cplusplus/html-doc-framework.git",
24-
"_target": "~0.3.1",
25-
"_originalSource": "cplusplus/html-doc-framework",
26-
"_direct": true
24+
"_target": "*",
25+
"_originalSource": "cplusplus/html-doc-framework"
2726
}

Diff for: fundamentals-ts.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2967,12 +2967,12 @@ <h1>Contents</h1>
29672967

29682968
// <i>plausible implementation for the is_assignable type trait:</i>
29692969
template &lt;class T&gt;
2970-
using is_copy_assignable = is_detected&lt;T, copy_assign_t&gt;;
2970+
using is_copy_assignable = is_detected&lt;copy_assign_t, T&gt;;
29712971

29722972
// <i>plausible implementation for an augmented is_assignable type trait</i>
29732973
// <i>that also checks the return type:</i>
29742974
template &lt;class T&gt;
2975-
using is_canonical_copy_assignable = is_detected_exact&lt;T&amp;, T, copy_assign_t&gt;;</code></pre>
2975+
using is_canonical_copy_assignable = is_detected_exact&lt;T&amp;, copy_assign_t, T&gt;;</code></pre>
29762976

29772977
<span class="nowrap">— <em>end example</em> ]</span>
29782978
</cxx-example>

0 commit comments

Comments
 (0)