Skip to content

Releases: streetsidesoftware/cspell-action

Support Yarn2 PnP

07 Jun 18:37

Choose a tag to compare

Fixes

  • #186 - Support Yarn2 PnP
    Add "usePnP": true to a cspell.json file to tell cspell to load the .pnp.js or .pnp.cjs file.

  • #213 Make it possible to check any files in the repo, not just the ones changed
    Using incremental_files_only: false tells the action to check all files matching files

    - uses: streetsidesoftware/cspell-action@v1.2.1
      with:
        files: "**"
        # Limit the files checked to the ones in the pull request or push.
        incremental_files_only: false

Support `cspell.config.js` files

04 Jun 06:31

Choose a tag to compare

Due to a bug in the way this action was being WebPacked, it could not load cspell.config.js files.

Features

  • Supports repositories with cspell.config.js files.
  • It is now possible to have dictionaries stored in a Yarn 2 repository.
  • Upgrade to cspell 5.5.2

Yarn 2

Until the PnP option is added to cspell, it is necessary to explicitly load the .pnp.js or .pnp.cjs file that Yarn 2 generates.

This can be accomplished using cspell.config.js files. See #186

Update to cspell 5.4.1

17 May 13:48

Choose a tag to compare

Update cspell

  • Support cspell.config.js files
  • Support reading cspell configuration from package.json

Upgrade to cspell 5.3.3

27 Feb 08:21

Choose a tag to compare

v1.1.1

chore(release): 1.1.1

Upgrade to cspell 5.3

25 Feb 15:48

Choose a tag to compare

This release updates to cspell 5.3

Distribution cleanup

25 Jan 06:42

Choose a tag to compare

There are no source code differences between 1.03 and 1.04. The primary difference in that nearly everything has been packaged into a single main.js file. Only the cspell dictionaries have not been packaged.

Update to cspell@5.2.1

23 Jan 16:45

Choose a tag to compare

v1.0.2

28 Dec 08:36

Choose a tag to compare

v1.0.1

24 Dec 08:53

Choose a tag to compare

v1

24 Dec 08:44

Choose a tag to compare

Breaking change:

Option strict defaults to true. If spelling issues are found, it will fail the workflow. Set strict to false to just have it put warnings in the diffs.