mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
b277975656
* Fix the type declaration of `!!raw-loader!` modules. Instead of declaring them to export an object with a single key `default` which is a string, the modules have a default export, which is a string. Note, that this doesn't actually change the generated code, just the types that typescript sees. The code worked before because the only thing done to the values was to coerce the values to a string, which turned into a no-op. * Switch from using `raw-loader` to using a source asset module. `raw-loader` was deprecated in webpack v5. |
||
---|---|---|
.. | ||
bump-version | ||
bundle-doc | ||
engines-check | ||
fetch-changelog | ||
build-release.sh | ||
build.sh | ||
doc.sh | ||
fetch-steam-achievements-data.js | ||
package-electron.sh | ||
pretty-save.js | ||
README.md | ||
steamdev.vdf | ||
tsconfig.json |
Tools
Pretty Save
Useful to analyze a player's save game for anomalies.
It decodes the save and prettifies the output. Cannot be used to modify a save game directly since it drops some properties.
Usage
node ./pretty-save.js 'C:\\Users\\martin\\Desktop\\bitburnerSave_1641395736_BN12x14.json' 'C:\\Users\\martin\\Desktop\\pretty.json'
Fetch Steam Achievements Data
Used to synchronize the achievements info in steamworks to the game's data.json
Usage
# Get your key here: https://steamcommunity.com/dev/apikey
node fetch-steam-achievements-data.js DEVKEYDEVKEYDEVKEYDEVKEY
Fetch Changelog
Used to generate a changelog of merged pull requests & commits between A & B. The key is a personnal access token, from https://github.com/settings/tokens. It requires the "gist" scope as the result is pushed to a secret gist.
Usage
cd ./tools/fetch-changelog
npm install
export GITHUB_API_TOKEN=tokenhere # this could go into your .bashrc or .profile etc.
node index.js --from=31ebdbb139981a604bd0e8fc1e364916762e11b9 > ../bump-version/changes.md
Bump Version
Used to update the game's various version identifier. Requires pandoc installed to convert .md to .rst
Usage
cd ./tools/bump-version
npm install
node index.js --version=1.10.3 --versionNumber=10 < changes.md