avancement planning
This commit is contained in:
+21
@@ -2,6 +2,27 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
## [0.1.6](https://github.com/istanbuljs/schema/compare/v0.1.5...v0.1.6) (2026-04-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Undo change to schema in 0.1.x series ([440f977](https://github.com/istanbuljs/schema/commit/440f977adc826fa51aa5eba06ee4d89065ca4261))
|
||||
|
||||
## [0.1.5](https://github.com/istanbuljs/schema/compare/v0.1.4...v0.1.5) (2026-04-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Re-add release-please ([7c25461](https://github.com/istanbuljs/schema/commit/7c25461ac00d69b843d6a3e112a279164fc972b9))
|
||||
|
||||
## [0.1.4](https://github.com/istanbuljs/schema/compare/v0.1.3...v0.1.4) (2026-04-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Remove development dependencies ([a24b4c1](https://github.com/istanbuljs/schema/commit/a24b4c1bccf65f63e7f1fe6bd82bed82e57abc80))
|
||||
|
||||
### [0.1.3](https://github.com/istanbuljs/schema/compare/v0.1.2...v0.1.3) (2021-02-13)
|
||||
|
||||
|
||||
|
||||
+15
-3
@@ -1,6 +1,5 @@
|
||||
# @istanbuljs/schema
|
||||
|
||||
[![Travis CI][travis-image]][travis-url]
|
||||
[![NPM Version][npm-image]][npm-url]
|
||||
[![NPM Downloads][downloads-image]][downloads-url]
|
||||
[![MIT][license-image]](LICENSE)
|
||||
@@ -15,6 +14,21 @@ const {nyc} = require('@istanbuljs/schema').defaults;
|
||||
console.log(`Default exclude list:\n\t* ${nyc.exclude.join('\n\t* ')}`);
|
||||
```
|
||||
|
||||
## Testing
|
||||
|
||||
- **Runtime support**: See `engines.node` in `package.json` (currently `>=8`).
|
||||
- **Running tests**: Requires **Node.js >=22.3.0** (uses `node:test` snapshot testing via `t.assert.snapshot`).
|
||||
|
||||
```bash
|
||||
npm test
|
||||
```
|
||||
|
||||
To update snapshots:
|
||||
|
||||
```bash
|
||||
npm run test:update-snapshots
|
||||
```
|
||||
|
||||
## `@istanbuljs/schema` for enterprise
|
||||
|
||||
Available as part of the Tidelift Subscription.
|
||||
@@ -23,8 +37,6 @@ The maintainers of `@istanbuljs/schema` and thousands of other packages are work
|
||||
|
||||
[npm-image]: https://img.shields.io/npm/v/@istanbuljs/schema.svg
|
||||
[npm-url]: https://npmjs.org/package/@istanbuljs/schema
|
||||
[travis-image]: https://travis-ci.org/istanbuljs/schema.svg?branch=master
|
||||
[travis-url]: https://travis-ci.org/istanbuljs/schema
|
||||
[downloads-image]: https://img.shields.io/npm/dm/@istanbuljs/schema.svg
|
||||
[downloads-url]: https://npmjs.org/package/@istanbuljs/schema
|
||||
[license-image]: https://img.shields.io/npm/l/@istanbuljs/schema.svg
|
||||
|
||||
+4
-8
@@ -1,13 +1,11 @@
|
||||
{
|
||||
"name": "@istanbuljs/schema",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.6",
|
||||
"description": "Schemas describing various structures used by nyc and istanbuljs",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"release": "standard-version --sign",
|
||||
"pretest": "xo",
|
||||
"test": "tap",
|
||||
"snap": "npm test -- --snapshot"
|
||||
"test": "nyc node --test test/test.js",
|
||||
"test:update-snapshots": "nyc node --test --test-update-snapshots test/test.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
@@ -23,8 +21,6 @@
|
||||
},
|
||||
"homepage": "https://github.com/istanbuljs/schema#readme",
|
||||
"devDependencies": {
|
||||
"standard-version": "^7.0.0",
|
||||
"tap": "^14.6.7",
|
||||
"xo": "^0.25.3"
|
||||
"nyc": "^18.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user