@dry-lint/css 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 +4 -6
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # `@dry-lint/css`
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,10 +1,10 @@
1
1
  {
2
2
  "name": "@dry-lint/css",
3
3
  "description": "Detect duplicate or near-duplicate CSS, SCSS, and Less definitions using PostCSS.",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": "Lodewijk Wensveen",
6
6
  "dependencies": {
7
- "@dry-lint/core": "1.0.2",
7
+ "@dry-lint/core": "1.0.3",
8
8
  "postcss": "^8.5.6",
9
9
  "postcss-less": "^6.0.0",
10
10
  "postcss-scss": "^4.0.9"
@@ -37,15 +37,13 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "repository": {
41
- "type": "git",
42
- "url": "git+https://github.com/dry-lint/dry-lint.git"
43
- },
40
+ "repository": "dry-lint/dry-lint.git",
44
41
  "scripts": {
45
42
  "build": "bun run clean && tsc -b",
46
43
  "check-types": "tsc -b --noEmit",
47
44
  "clean": "bunx rimraf dist/* dist",
48
45
  "lint": "eslint \"src/**/*.ts\"",
46
+ "size": "pkg-size .",
49
47
  "test": "vitest",
50
48
  "test:ci": "vitest run"
51
49
  },