Skip to content

Commit 41e31a2

Browse files
committed
cleanup
1 parent 49759c7 commit 41e31a2

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
node_modules
2-
index.*.*
2+
.eslintcache
33
*.log*
44
*.result.css
5-
.*
65
!.appveyor.yml
76
!.editorconfig
87
!.gitignore
9-
!.rollup.js
10-
!.tape.js
118
!.github

CHANGELOG.md

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

3+
### 5.1.0 (December 28, 2023)
4+
5+
- Updated: `dart-sass` to 1.69.5 (minor)
6+
- Updated: `source-map` to 0.7.4 (patch)
7+
38
### 5.0.1 (March 8, 2022)
49

510
- Fixes an issue with import files not being sent for processors to pick up. [#31](https://github.com/csstools/postcss-sass/pull/31)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ grunt.initConfig({
137137
[dart-sass]: https://github.com/sass/dart-sass
138138
[dart-sass options]: https://github.com/sass/dart-sass#javascript-api
139139
[PostCSS]: https://github.com/postcss/postcss
140-
[PostCSS Sass]: https://github.com/jonathantneal/postcss-sass
140+
[PostCSS Sass]: https://github.com/csstools/postcss-sass
141141
[Sass]: https://github.com/sass/dart-sass
142142
[SCSS Parser]: https://github.com/postcss/postcss-scss
143143
[discord]: https://discord.gg/bUadyRwkJS

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
77
"repository": "jonathantneal/postcss-sass",
8-
"homepage": "https://github.com/jonathantneal/postcss-sass#readme",
9-
"bugs": "https://github.com/jonathantneal/postcss-sass/issues",
8+
"homepage": "https://github.com/csstools/postcss-sass#readme",
9+
"bugs": "https://github.com/csstools/postcss-sass/issues",
1010
"main": "dist/index.cjs",
1111
"module": "dist/index.mjs",
1212
"exports": {
@@ -24,9 +24,9 @@
2424
],
2525
"scripts": {
2626
"prepublishOnly": "npm test",
27-
"pretest": "rollup -c .rollup.mjs --silent --exports 'auto'",
27+
"pretest": "rollup -c rollup.mjs --silent --exports 'auto'",
2828
"test": "npm run test:js && npm run test:tape",
29-
"test:js": "eslint **/*.mjs **/*.js --cache --ignore-path .gitignore --quiet",
29+
"test:js": "eslint *.mjs src/*.mjs test/*.mjs --cache --ignore-path .gitignore --quiet",
3030
"test:tape": "node --test",
3131
"test:rewrite-expects": "REWRITE_EXPECTS=true node --test"
3232
},

rollup.mjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import babel from '@rollup/plugin-babel';
2+
3+
export default {
4+
input: 'src/index.mjs',
5+
output: [
6+
{ file: 'dist/index.cjs', format: 'cjs', sourcemap: false, strict: false, exports: 'auto' },
7+
{ 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+
}),
15+
],
16+
};
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)