Skip to content

Commit d7c7c12

Browse files
committed
fix(build): making tests to build the edge edition
1 parent abe3f3b commit d7c7c12

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ script:
2020
- tiddlywiki ./wiki --verbose --build develop # This is the same as the online one, but to a different dist path
2121
# ===== Build the edge version with the latest version of tiddlywiki just to see if it works at all =====
2222
- "npm i tiddlywiki@latest && npx tiddlywiki --version"
23-
- "npx tiddlywiki ./editions/edge --verbose --build index " # build the edge edition (includes not well tested stuff)
23+
- "npx tiddlywiki ./editions/edge --verbose --build index" # build the edge edition (includes not well tested stuff)
2424
- cp -r ./wiki/output/* ./dist/ # Copy everything to the dist directory
2525
# Measures file sizes and adds that data to the pull request
2626
- python node_modules/travis-weigh-in/weigh_in.py dist/online/index.html

.vscode/launch.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,13 @@
4040
"outDir": null,
4141
"localRoot": "${workspaceRoot}",
4242
"remoteRoot": null
43-
},
43+
}
4444
{
45-
"name": "Attach to Process",
4645
"type": "node",
4746
"request": "attach",
48-
"processId": "${command.PickProcess}",
49-
"port": 5858,
50-
"sourceMaps": false,
51-
"outDir": null
47+
"name": "Attach by Process ID",
48+
"protocol": "inspector",
49+
"processId": "${command:PickProcess}"
5250
}
5351
]
5452
}

editions/edge/tiddlywiki.info

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@
1414
"languages": [
1515
"en-US"
1616
],
17-
"includeWikis": [
18-
{"path": "../../wiki", "read-only": true}
19-
],
2017
"build": {
2118
"index": [
2219
"--rendertiddler",
23-
"$:/NoteSelf/save/online",
20+
"$:/core/save/all",
2421
"../../../dist/edge/index.html",
2522
"text/plain"
2623
]

0 commit comments

Comments
 (0)