Skip to content

Commit b4dbe0c

Browse files
committed
docs: update readme for debug builds
1 parent 0160a6e commit b4dbe0c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,18 @@ See filer docs for API docs: https://filer.js.org/
134134
<!--// using CDN link in your html file-->
135135
<script src="https://unpkg.com/@phcode/fs@latest/dist/virtualfs.js"/>
136136
137+
<!--// using CDN link in your html file if you want to debug the file system internals-->
138+
<script src="https://unpkg.com/@phcode/fs@latest/dist/virtualfs-debug.js"/>
139+
137140
<!--// OR to get a particular version, change latest to the version you need:-->
138-
<script src="https://unpkg.com/@phcode/fs@1.0.4/dist/virtualfs.js"/>
141+
<script src="https://unpkg.com/@phcode/fs@2.0.3/dist/virtualfs.js"/>
139142
140143
<!--// OR if you did npm install-->
141144
<script src="<project_root>/node_modules/@phcode/fs/dist/virtualfs.js"/>
142145
146+
<!--// OR if you did npm install and want to debug the file system internals-->
147+
<script src="<project_root>/node_modules/@phcode/fs/dist/virtualfs-debug.js"/>
148+
143149
<!--If you want to enable debug mode add this before the import script line-->
144150
<script type="text/javascript">
145151
window.debugMode = true; // if you want to enable debug mode

0 commit comments

Comments
 (0)