Skip to content

Commit

Permalink
up build instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
panaC committed Nov 21, 2024
1 parent d3416d0 commit aa7fc73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions THORIUM_BUILD.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
0) rm -rf node_modules/ && rm package-lock.json
1) `npm install --legacy-peer-deps`
2) `npm install -g gulp-cli`
3) `gulp test`
4) `gulp web`
0) rm -rf node_modules/
2) `npm install`
3) `npx gulp types`
4) `npx gulp web`
5) `cd build/gh-pages`
6) `git push --set-upstream origin gh-pages -f`
7) `cd ../..`
2 changes: 1 addition & 1 deletion gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const MINIFIED_LEGACY_DIR = BUILD_DIR + "minified-legacy/";
const JSDOC_BUILD_DIR = BUILD_DIR + "jsdoc/";
const GH_PAGES_DIR = BUILD_DIR + "gh-pages/";
const DIST_DIR = BUILD_DIR + "dist/";
const TYPES_DIR = BUILD_DIR + "types/";
const TYPES_DIR = "/" + "types/";

Check failure on line 69 in gulpfile.mjs

View workflow job for this annotation

GitHub Actions / Lint (lts/*)

Unexpected string concatenation of literals
const TMP_DIR = BUILD_DIR + "tmp/";
const TYPESTEST_DIR = BUILD_DIR + "typestest/";
const COMMON_WEB_FILES = [
Expand Down

0 comments on commit aa7fc73

Please sign in to comment.