Skip to content

Commit

Permalink
add missing web components
Browse files Browse the repository at this point in the history
  • Loading branch information
onury committed Jun 10, 2016
1 parent cb1d7f5 commit 0514ccb
Show file tree
Hide file tree
Showing 15 changed files with 13,049 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bowerrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"directory": "lib/web/components/",
"directory": "bower_components/",
"timeout": 120000,
"color": true,
"registry": {
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ backup/
wiki/
doc/
node_modules/
lib/web/components/
bower_components/
tmp/
test/input/private/
test/output/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Docma Change-Log
---

#### **v1.0.1** Release (2015-06-11)

- Fixed missing web components.

#### **v1.0.0** Release (2015-06-11)

- <p>**Docma** (Builder):</p>
Expand Down
1 change: 0 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"**/.*",
"node_modules",
"bower_components",
"lib/web/components/",
"backup",
"doc",
"test",
Expand Down
15 changes: 10 additions & 5 deletions lib/docma.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,18 @@ module.exports = (function () {
DOCMA_CORE_PARTS: path.join(DIR_WEB, 'core.*.js'),
// components to be compiled into docma-web (unminified files)
DOCMA_COMPS: [
path.join(DIR_COMPS, 'dustjs-linkedin', 'dist', 'dust-core.js'),
path.join(DIR_COMPS, 'dustjs-helpers', 'dist', 'dust-helpers.js'),
path.join(DIR_COMPS, 'page', 'page.js'),
path.join(DIR_COMPS, 'eventEmitter', 'EventEmitter.js')
// path.join(DIR_COMPS, 'dustjs-linkedin', 'dist', 'dust-core.js'),
// path.join(DIR_COMPS, 'dustjs-helpers', 'dist', 'dust-helpers.js'),
// path.join(DIR_COMPS, 'page', 'page.js'),
// path.join(DIR_COMPS, 'eventEmitter', 'EventEmitter.js')
path.join(DIR_COMPS, 'dust-core.js'),
path.join(DIR_COMPS, 'dust-helpers.js'),
path.join(DIR_COMPS, 'page.js'),
path.join(DIR_COMPS, 'EventEmitter.js')
],
// this is not compiled, used only for jsdom
JQUERY: path.join(DIR_COMPS, 'jquery', 'dist', 'jquery.min.js'),
// JQUERY: path.join(DIR_COMPS, 'jquery', 'dist', 'jquery.min.js'),
JQUERY: path.join(DIR_COMPS, 'jquery.min.js'),
// docma base styles (for layout generally, not for styling)
DOCMA_LESS: path.join(DIR_ASSETS, 'docma.less'),
// JSON that includes emoji code to twemoji SVG filename mapping
Expand Down
Loading

0 comments on commit 0514ccb

Please sign in to comment.