Releases: gobstones/gobstones-core
Releases · gobstones/gobstones-core
Release v0.2.5
chore: Added Cloning to Board and Cells
Release v0.2.4
chore(BREAKING CHANGE): Switch to rollup
This commit does:
- Change the build tool from webpack to rollup.
- Change the way this module is exported, now it's exported as both an
ES module and a CommonJS module. - package.json now reflects that fact by exporting a main (CommonJS) and
a modules (ESM). - The code is now bundled as multiple sub-modules: index (main code),
cli (only cli building related code), test (only test helpers, build
only as CommonJS, as Jest only supports this). - package.json now has an "exports" section to support the multiple
modules, and an associated "typesVersions" to support typings in this
submodules. - Changed typedoc minimal version to 0.2.26 to support --watch.
- Removed onchange as now it's not needed with typedoc watch mode.
- Updated README
BREAKING CHANGE
Release v0.2.3
fix: Fix an error with cli not passing options
The cli passsed incorrect options flags to the inputs,
and the hasNoArgs worked incorrectly. This commit
fixes that problem.
Also fix a blank space in .npmignore that was unneded.
Release v0.2.2
chore: Updated dependencies to latest
All dependencies in package.json has been updated to
latest availabe version. Note that you might need
to reinstall Husky to enable git hooks. Run:
- rm -rf node_modules
- rm -rf .git/hooks
- npm install
- npx husky install
Additionally update ESLint rules to match latest version.
Additionally added options to output help in a cli app when
no arguments where given. Document the CLI app.
Release v0.2.1
Release v0.2.0
Update husky to add docs before commit
Release v0.1.0
Initial Commit