Skip to content

Releases: guardian/actions-npm-dependencies

Improved Documentation

19 Dec 11:22
f5dd09f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.0...0.6.1

0.6.0

01 Sep 13:38
f19d270
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.3...0.6.0

Isomorphic Deno + Node

21 Jul 15:41
Compare
Choose a tag to compare

What's Changed

  • Onboarding Ara: suggestions & node by @mxdvl in #9

Full Changelog: 0.5.1...0.5.3

Functional refactor

07 Jul 15:44
2e90d14
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.4.6...0.5.0

Simpler known issues specification

12 May 10:36
Compare
Choose a tag to compare

Any local package can have a list of packages to accept instead, for example:

{
  devDependencies: {
    "@types/package": "1.0.9",
   "package": "1.1.1"
  }
  known_issues: {
    // the contract is that both major and minor must match
    "[email protected]": ["@types/[email protected]"],
  }
}

Full Changelog: 0.3.0...v0.3.1

Package can be remote files

03 May 13:33
f1070a3
Compare
Choose a tag to compare

What's Changed

  • Refactor to keep things more functional by @mxdvl in #6
  • Keep things more function to allow direct consumption outside of CLI tools.

Full Changelog: 0.2.2...0.3.0

Run from deno.land

25 Jan 16:28
Compare
Choose a tag to compare

Try it today:

deno run \
	--allow-net=unpkg.com --allow-read=. \
	https://deno.land/x/[email protected]/src/main.ts \
	./package.json  \
	--cache

Testing initial release

25 Jan 14:20
2bc1b48
Compare
Choose a tag to compare

This is minimally viable script that can be deployed in various environments.

As a simple example, which will fail with a non-zero error code if there are any health issues with your package.json

deno run \
	--allow-net=unpkg.com \
	--allow-read=. \
	https://raw.githubusercontent.com/guardian/actions-npm-dependencies/0.0.1/src/main.ts \
	package.json  \
  	--cache

Maybe we can run this from deno.land/x/ ?

What's Changed

  • Health report of package.json for CI use by @mxdvl in #1

New Contributors

  • @mxdvl made their first contribution in #1

Full Changelog: https://github.com/guardian/actions-npm-dependencies/commits/0.0.1