File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,12 @@ before_script:
13
13
- export TIDDLYWIKI_PLUGIN_PATH="$(pwd)/plugins:$(pwd)/pouchdb/src/plugins:$(pwd)/tpouch/dist" # Plugins paths with all deps globally available
14
14
- " (cd tpouch && npm i && gulp travis --production)"
15
15
script :
16
- - npm run build-plugin # builds NoteSelf core plugins
16
+ # ===== Builds NoteSelf core plugins
17
+ - npm run build-plugin
18
+ # ===== Build the editions
17
19
- tiddlywiki ./wiki --verbose --output ./dist --build index --build favicon --build library
18
20
- tiddlywiki ./editions/online --verbose --build index
21
+ - tiddlywiki ./editions/markdown --verbose --build index
19
22
- tiddlywiki ./editions/developer --verbose --build index # build the developer edition
20
23
# ===== Non Minified version =====
21
24
- " (cd ./tpouch && gulp travis)" # Build non minified version of TPouch code ( no --production flag )
@@ -25,6 +28,7 @@ script:
25
28
- " npx tiddlywiki ./editions/edge --verbose --build index" # build the edge edition (includes not well tested stuff)
26
29
# === Measures file sizes and adds that data to the pull request ===
27
30
- python node_modules/travis-weigh-in/weigh_in.py dist/developer/index.html
31
+ - python node_modules/travis-weigh-in/weigh_in.py dist/markdown/index.html
28
32
- python node_modules/travis-weigh-in/weigh_in.py dist/online/index.html
29
33
- python node_modules/travis-weigh-in/weigh_in.py dist/edge/index.html
30
34
- python node_modules/travis-weigh-in/weigh_in.py dist/dev/index.html
Original file line number Diff line number Diff line change
1
+ {
2
+ "plugins": [
3
+ "tiddlywiki/markdown"
4
+ ],
5
+ "themes": [],
6
+ "languages": [],
7
+ "includeWikis": [ {"path": "../base", "read-only": true} ],
8
+ "build": {
9
+ "index": [
10
+ "--output", "./dist/markdown/",
11
+ "--rendertiddler", "$:/core/save/all", "index.html", "text/plain"
12
+ ]
13
+ }
14
+ }
You can’t perform that action at this time.
0 commit comments