Skip to content

1.2.5

Compare
Choose a tag to compare
@ampersarnie ampersarnie released this 24 Aug 15:38
· 85 commits to main since this release
5de2339

What's Changed

Change brings in allowance for an additional config for further compatibility with an editor.

VSCode (or other Editor) Config

While most packages and config will work out of the box there are a number of configs that need defining to give yourself the best compatibility with your Editor setup. These include:

  • Prettier
  • ESLint

To get these working correctly with your Editor you simply need to reference them in your package.json as seen below for prettier and eslintConfig keys.

{
  "name": "my-package",
  "version": "1.0.0",
  "prettier": "@bigbite/build-tools/configs/prettier",
  "eslintConfig": {
    "extends": "./node_modules/@bigbite/build-tools/configs/eslint",
  },
  "dependencies": {}
}

⚠️ This addition and path for ESLint is subject to change and be refined in consecutive releases.

Changelog

Full Changelog: 1.2.4...1.2.5