Skip to content

Commit 3331eb9

Browse files
committed
put github pages in /docs folder
1 parent d65619c commit 3331eb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sortable-tablesort",
33
"version": "4.0.0",
44
"description": "A tiny, Vanilla/Plain JavaScript table sorter",
5-
"private": true,
5+
"private": false,
66
"type": "module",
77
"main": "dist/sortable.min.js",
88
"module": "dist/esm/sortable.min.js",

scripts/prepare-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function createHTML(type: (typeof DIST_TYPES)[number], minified: boolean = false
5353
template = template.replace('</body>', `${scripts}\n</body>`)
5454

5555
// Save the file
56-
const outputPath = type === 'demo' ? 'demo/index.html' : `dist/${type}${minified ? '.min' : ''}.html`
56+
const outputPath = type === 'demo' ? 'docs/index.html' : `dist/${type}${minified ? '.min' : ''}.html`
5757

5858
// if no such directory, create it
5959
if (!fs.existsSync(path.dirname(outputPath))) {

0 commit comments

Comments
 (0)