-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'TurboWarp:master' into ListExtension
- Loading branch information
Showing
129 changed files
with
15,702 additions
and
4,602 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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# npm | ||
node_modules | ||
|
||
# Final built website | ||
# Final built website and localizations | ||
build | ||
build-l10n | ||
|
||
# Various operating system caches | ||
thumbs.db | ||
.DS_Store |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
const pathUtil = require("path"); | ||
const Builder = require("./builder"); | ||
|
||
const outputDirectory = pathUtil.join(__dirname, "..", "build"); | ||
const outputDirectory = pathUtil.join(__dirname, "../build"); | ||
const l10nOutput = pathUtil.join(__dirname, "../build-l10n"); | ||
|
||
const builder = new Builder("production"); | ||
const build = builder.build(); | ||
|
||
build.export(outputDirectory); | ||
console.log(`Built to ${outputDirectory}`); | ||
|
||
console.log(`Saved to ${outputDirectory}`); | ||
build.exportL10N(l10nOutput); | ||
console.log(`Exported L10N to ${l10nOutput}`); |
Oops, something went wrong.