-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathias Maes
committed
Dec 16, 2019
1 parent
e43a0ad
commit d67e651
Showing
5 changed files
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
*.scss.map | ||
|
||
node_modules/ | ||
css/ | ||
css/ | ||
package/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const themes = "config"; | ||
const css = "css"; | ||
|
||
const path = require("path"); | ||
const fs = require('./filesystem'); | ||
|
||
fs.Mkdir("package") | ||
fs.Mkdir(path.join("package","themes")); | ||
fs.Mkdir(path.join("package", "public")); | ||
fs.Mkdir(path.join("package", "public", "css")); | ||
|
||
fs.CopyInto(themes, path.join("package","themes")); | ||
fs.CopyInto(css, path.join("package", "public", "css")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const testServerPath = "../easywiki-test"; | ||
const themes = "config"; | ||
const css = "css"; | ||
|
||
const path = require("path"); | ||
const fs = require('./filesystem'); | ||
|
||
fs.Mkdir(path.join(testServerPath, "themes")); | ||
fs.Mkdir(path.join(testServerPath, "public", "css")); | ||
|
||
fs.CopyInto(themes, path.join(testServerPath, "themes")); | ||
fs.CopyInto(css, path.join(testServerPath, "public", "css")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters