Skip to content

Commit 1316489

Browse files
committed
6.0.0
1 parent fa8faf9 commit 1316489

File tree

4 files changed

+12
-35
lines changed

4 files changed

+12
-35
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!.editorconfig
33
!.gitignore
44
!.github
5-
!.rollup.js
5+
!.rollup.mjs
66
!.tape.js
77
!.travis.yml
88
*.log*
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
import babel from 'rollup-plugin-babel';
2-
31
export default {
42
input: 'src/index.js',
53
output: [
64
{ file: 'dist/index.cjs', format: 'cjs', sourcemap: false, strict: false, exports: 'auto' },
75
{ file: 'dist/index.mjs', format: 'esm', sourcemap: false, strict: false, exports: 'auto' }
8-
],
9-
plugins: [
10-
babel({
11-
presets: [
12-
['@babel/env', { modules: false, targets: { node: 12 } }]
13-
]
14-
})
156
]
167
};

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to Input Range
22

3+
### 6.0.0 (October 23, 2024)
4+
5+
- Updated: `postcss-selector-parser`
6+
- Updated: minimum node version is now 18.
7+
38
### 5.0.0 (April 12, 2022)
49

510
- Added: PostCSS 8 compatibility (breaking)

package.json

Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-input-range",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Style range inputs with unprefixed pseudo-classes",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
@@ -23,47 +23,28 @@
2323
"dist"
2424
],
2525
"scripts": {
26-
"build": "rollup --config .rollup.js --silent",
26+
"build": "rollup --config .rollup.mjs --silent",
2727
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
2828
"prepublishOnly": "npm run clean && npm run build && npm run test",
29-
"test": "npm run lint && npm run test:tape",
30-
"lint": "echint && eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet",
31-
"test:tape": "postcss-tape"
29+
"test": "postcss-tape"
3230
},
3331
"engines": {
34-
"node": "^12 || ^14 || >=16"
32+
"node": ">=18"
3533
},
3634
"dependencies": {
37-
"postcss-selector-parser": "^6.0.10"
35+
"postcss-selector-parser": "^7.0.0"
3836
},
3937
"devDependencies": {
40-
"@babel/core": "^7.17.2",
41-
"@babel/eslint-parser": "^7.17.0",
42-
"@babel/preset-env": "^7.16.11",
43-
"echint": "^4.0.1",
44-
"echint-config-dev": "1.0.0",
45-
"eslint": "^8.13.0",
46-
"eslint-config-dev": "2.0.0",
4738
"postcss": "^8.4.6",
4839
"postcss-tape": "^6.0.1",
49-
"rollup": "^2.67.2",
50-
"rollup-plugin-babel": "^4.4.0"
40+
"rollup": "^4.0.0"
5141
},
5242
"peerDependencies": {
5343
"postcss": "^8.0.0"
5444
},
5545
"postcssConfig": {
5646
"config": ".tape.js"
5747
},
58-
"echint": {
59-
"extends": "dev"
60-
},
61-
"eslintConfig": {
62-
"extends": "dev",
63-
"parserOptions": {
64-
"sourceType": "module"
65-
}
66-
},
6748
"keywords": [
6849
"postcss",
6950
"css",

0 commit comments

Comments
 (0)