@dry-lint/core 1.0.2 → 1.0.4
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.
- package/README.md +4 -6
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# `@dry-lint/core`
|
|
2
2
|
|
|
3
|
-
[](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml)
|
|
4
|
-
[](https://dry-lint.github.io/dry-lint/)
|
|
5
|
-
[](https://github.com/dry-lint/dry-lint/blob/main/LICENSE)
|
|
3
|
+
[](https://github.com/dry-lint/dry-lint/actions/workflows/ci.yml) [](https://dry-lint.github.io/dry-lint/) [](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
|
|
|
@@ -10,7 +8,7 @@ This package provides the **core engine**: APIs to register custom extractors, n
|
|
|
10
8
|
|
|
11
9
|
---
|
|
12
10
|
|
|
13
|
-
##
|
|
11
|
+
## Install
|
|
14
12
|
|
|
15
13
|
```bash
|
|
16
14
|
bun add @dry-lint/core
|
|
@@ -36,7 +34,7 @@ See [Writing a Plugin](https://github.com/dry-lint/dry-lint#-writing-a-plugin) f
|
|
|
36
34
|
|
|
37
35
|
---
|
|
38
36
|
|
|
39
|
-
##
|
|
37
|
+
## More
|
|
40
38
|
|
|
41
39
|
- [Monorepo & Plugins](https://github.com/dry-lint/dry-lint#-packages)
|
|
42
40
|
- [Official CLI](https://www.npmjs.com/package/@dry-lint/cli)
|
|
@@ -44,6 +42,6 @@ See [Writing a Plugin](https://github.com/dry-lint/dry-lint#-writing-a-plugin) f
|
|
|
44
42
|
|
|
45
43
|
---
|
|
46
44
|
|
|
47
|
-
##
|
|
45
|
+
## License
|
|
48
46
|
|
|
49
47
|
MIT — see [LICENSE](https://github.com/dry-lint/dry-lint/blob/main/LICENSE).
|
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.
|
|
4
|
+
"version": "1.0.4",
|
|
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",
|