Skip to content

Commit

Permalink
add changelog and repository url in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Aug 12, 2024
1 parent 48785e7 commit 1a0bbd9
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 17 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changes to PostCSS Resolve Nested Selector

### 0.1.6

- add `CHANGELOG.md`
- add repository url in `package.json`

### 0.1.5

- restore compat with extremely old node versions

### 0.1.4

- do not resolve `&` in attributes or strings
- do not resolve escaped `&`

### 0.1.3

- only split atrule prules by top level comma's.

34 changes: 20 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-resolve-nested-selector",
"version": "0.1.5",
"version": "0.1.6",
"description": "Resolve a nested selector in a PostCSS AST",
"main": "index.js",
"scripts": {
Expand All @@ -17,10 +17,19 @@
],
"license": "MIT",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js"
],
"devDependencies": {
"postcss": "^8.0.0",
"postcss-nested": "6.0.0"
}
"postcss-nested": "^6.0.0"
},
"homepage": "https://github.com/csstools/postcss-resolve-nested-selector/tree/main/packages/css-tokenizer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/csstools/postcss-resolve-nested-selector.git"
},
"bugs": "https://github.com/csstools/postcss-resolve-nested-selector/issues"
}

0 comments on commit 1a0bbd9

Please sign in to comment.