@dry-lint/core 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +3 -5
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # `@dry-lint/core`
2
2
 
3
- [![CI](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml/badge.svg)](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml)
4
- [![Docs](https://img.shields.io/badge/docs-%E2%9C%93-blue)](https://dry-lint.github.io/dry-lint/)
5
- [![License](https://img.shields.io/npm/l/@dry-lint/cli)](https://github.com/dry-lint/dry-lint/blob/main/LICENSE)
3
+ [![CI](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml/badge.svg)](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml) [![Docs](https://img.shields.io/badge/docs-%E2%9C%93-blue)](https://dry-lint.github.io/dry-lint/) [![License](https://img.shields.io/npm/l/@dry-lint/cli)](https://github.com/dry-lint/dry-lint/blob/main/LICENSE)
6
4
 
7
5
  Part of the [**dry-lint**](https://github.com/dry-lint/dry-lint) monorepo.
8
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dry-lint/core",
3
3
  "description": "Core lint logic and types for dry-lint plugins.",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": "Lodewijk Wensveen",
6
6
  "dependencies": {},
7
7
  "devDependencies": {
@@ -29,15 +29,13 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "repository": {
33
- "type": "git",
34
- "url": "git+https://github.com/dry-lint/dry-lint.git"
35
- },
32
+ "repository": "dry-lint/dry-lint.git",
36
33
  "scripts": {
37
34
  "build": "bun run clean && tsc -b",
38
35
  "check-types": "tsc -b --noEmit",
39
36
  "clean": "bunx rimraf dist/* dist",
40
37
  "lint": "eslint \"src/**/*.ts\"",
38
+ "size": "pkg-size .",
41
39
  "test": "vitest run",
42
40
  "test:ci": "vitest run",
43
41
  "test:coverage": "vitest run --coverage",