Skip to content

Commit d5646aa

Browse files
committed
fix: include vis dependency for tiddlymap
1 parent 06d48ae commit d5646aa

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ before_install:
99
- "git clone https://github.com/danielo515/tw5-pouchdb.git pouchdb" # note that I'm naming the output folders for easier reference later
1010
- "git clone https://github.com/danielo515/tiddlypouch.git tpouch"
1111
- "git clone https://github.com/felixhayashi/TW5-TiddlyMap.git tiddlymap" # required by tiddlymap edition
12+
- "git clone https://github.com/felixhayashi/TW5-Vis.js.git vis" # required by tiddlymap
1213
- "ls -l"
1314
before_script:
14-
- export TIDDLYWIKI_PLUGIN_PATH="$(pwd)/plugins:$(pwd)/pouchdb/src/plugins:$(pwd)/tpouch/dist:$(pwd)/tiddlymap/dist" # Plugins paths with all deps globally available
15+
- export TIDDLYWIKI_PLUGIN_PATH="$(pwd)/plugins:$(pwd)/pouchdb/src/plugins:$(pwd)/tpouch/dist:$(pwd)/tiddlymap/dist:$(pwd)/vis/dist" # Plugins paths with all deps globally available
1516
- "(cd tpouch && npm i && gulp travis --production)"
1617
script:
1718
# ===== Builds NoteSelf core plugins

editions/tiddlymap/tiddlywiki.info

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
{
2-
"plugins": ["felixhayashi/tiddlymap"],
2+
"plugins": [
3+
"felixhayashi/tiddlymap",
4+
"felixhayashi/vis"
5+
],
36
"themes": [],
47
"languages": [],
5-
"includeWikis": [ {"path": "../base", "read-only": true} ],
8+
"includeWikis": [
9+
{
10+
"path": "../base",
11+
"read-only": true
12+
}
13+
],
614
"build": {
715
"index": [
8-
"--output", "./dist/tiddlymap/",
9-
"--rendertiddler", "$:/core/save/all", "index.html", "text/plain"
16+
"--output",
17+
"./dist/tiddlymap/",
18+
"--rendertiddler",
19+
"$:/core/save/all",
20+
"index.html",
21+
"text/plain"
1022
]
1123
}
1224
}

0 commit comments

Comments
 (0)