Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Commit 56dfc2a

Browse files
committed
3.0.1
1 parent 058391d commit 56dfc2a

File tree

9 files changed

+31
-20
lines changed

9 files changed

+31
-20
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
dist
22
node_modules
3-
index.*.*
43
package-lock.json
54
*.log*
65
*.result.css
76
.*
87
!.editorconfig
8+
!.gitattributes
99
!.gitignore
1010
!.rollup.js
1111
!.tape.js

.rollup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pkg from './package.json'
22

33
export default {
4-
...pkg.rollup,
4+
...pkg.rollup,
55
plugins: pkg.rollup.plugins.map(plugin => require(plugin)()),
66
onwarn(warning, warn) {
77
if (warning.code !== 'UNRESOLVED_IMPORT') warn(warning)

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ node_js:
77

88
install:
99
- npm install --ignore-scripts
10-
- npm run build

CHANGELOG.md

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

3+
### 3.0.1 (April 12, 2020)
4+
5+
- Updated: Ownership moved to CSSTools.
6+
37
### 3.0.0 (April 12, 2020)
48

59
- Updated: `postcss-values-parser` to 3.1.1 (major).

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ scope and avoid unrelated commits.
2626
cd postcss-lab-function
2727

2828
# Assign the original repo to a remote called "upstream"
29-
git remote add upstream git@github.com:jonathantneal/postcss-lab-function.git
29+
git remote add upstream git@github.com:csstools/postcss-lab-function.git
3030

3131
# Install the tools necessary for testing
3232
npm install

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@ grunt.initConfig({
167167
[PostCSS]: https://github.com/postcss/postcss
168168
[PostCSS CLI]: https://github.com/postcss/postcss-cli
169169
[PostCSS Loader]: https://github.com/postcss/postcss-loader
170-
[PostCSS Lab Function]: https://github.com/jonathantneal/postcss-lab-function
170+
[PostCSS Lab Function]: https://github.com/csstools/postcss-lab-function
171171
[React App Rewire PostCSS]: https://github.com/csstools/react-app-rewire-postcss
172172
[React App Rewired]: https://github.com/timarney/react-app-rewired

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[<img alt="npm version" src="https://img.shields.io/npm/v/postcss-lab-function.svg" height="20">][npm-url]
44
[<img alt="CSS Standard Status" src="https://cssdb.org/badge/lab-function.svg" height="20">][css-url]
5-
[<img alt="build status" src="https://img.shields.io/travis/jonathantneal/postcss-lab-function/master.svg" height="20">][cli-url]
5+
[<img alt="build status" src="https://img.shields.io/travis/csstools/postcss-lab-function/master.svg" height="20">][cli-url]
66
[<img alt="support chat" src="https://img.shields.io/badge/support-chat-blue.svg" height="20">][git-url]
77

88

@@ -83,7 +83,7 @@ postcssLabFunction({ preserve: true })
8383
}
8484
```
8585

86-
[cli-url]: https://travis-ci.org/jonathantneal/postcss-lab-function
86+
[cli-url]: https://travis-ci.org/csstools/postcss-lab-function
8787
[css-url]: https://cssdb.org/#lab-function
8888
[git-url]: https://gitter.im/postcss/postcss
8989
[npm-url]: https://www.npmjs.com/package/postcss-lab-function
@@ -93,4 +93,4 @@ postcssLabFunction({ preserve: true })
9393
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
9494
[PostCSS]: https://github.com/postcss/postcss
9595
[PostCSS Loader]: https://github.com/postcss/postcss-loader
96-
[PostCSS Lab Function]: https://github.com/jonathantneal/postcss-lab-function
96+
[PostCSS Lab Function]: https://github.com/csstools/postcss-lab-function

package.json

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "postcss-lab-function",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Use lab() and lch() color functions in CSS",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
7-
"repository": "jonathantneal/postcss-lab-function",
8-
"homepage": "https://github.com/jonathantneal/postcss-lab-function#readme",
9-
"bugs": "https://github.com/jonathantneal/postcss-lab-function/issues",
7+
"repository": "csstools/postcss-lab-function",
8+
"homepage": "https://github.com/csstools/postcss-lab-function#readme",
9+
"bugs": "https://github.com/csstools/postcss-lab-function/issues",
1010
"main": "dist/index.cjs.js",
1111
"module": "dist/index.esm.mjs",
1212
"files": [
@@ -17,6 +17,7 @@
1717
"build:watch": "npx rollup -c .rollup.js --watch",
1818
"lint": "npx eslint --cache src",
1919
"lint:fix": "npx eslint --cache --fix",
20+
"pretest": "npm install && npm run build",
2021
"test": "npm run lint && npm run tape",
2122
"tape": "npx postcss-tape"
2223
},
@@ -37,18 +38,24 @@
3738
"rollup": "^2.6.0",
3839
"rollup-plugin-babel": "^4.4.0"
3940
},
40-
"eslintConfig": {
41-
"parser": "babel-eslint",
42-
"ignorePatterns": [
43-
"dist",
44-
"node_modules"
45-
]
46-
},
4741
"babel": {
4842
"presets": [
49-
"@babel/env"
43+
[
44+
"@babel/env",
45+
{
46+
"targets": "maintained node versions"
47+
}
48+
]
5049
]
5150
},
51+
"eslintConfig": {
52+
"env": {
53+
"es6": true,
54+
"node": true
55+
},
56+
"extends": "eslint:recommended",
57+
"parser": "babel-eslint"
58+
},
5259
"rollup": {
5360
"input": "src/index.js",
5461
"plugins": [

0 commit comments

Comments
 (0)