Skip to content

Releases: gobstones/gobstones-core

Release v0.2.5

02 May 04:58
Compare
Choose a tag to compare

chore: Added Cloning to Board and Cells

Release v0.2.4

22 Feb 05:50
Compare
Choose a tag to compare

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

13 Feb 19:48
Compare
Choose a tag to compare

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

12 Feb 17:32
Compare
Choose a tag to compare

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

12 Feb 13:18
Compare
Choose a tag to compare

fix: Missing types in generated typings d.ts files.

Some types where not exported due to a comment containing @internal,
that is used both by typedoc to ignore the element in the generated
docs, and by the ts compiler when outputing types. Use only @ignore,
to omit it from docs.

Release v0.2.0

08 Feb 17:28
Compare
Choose a tag to compare

Update husky to add docs before commit

Release v0.1.0

29 Jan 23:21
Compare
Choose a tag to compare

Initial Commit