Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: postcss/postcss-import
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 11.1.0
Choose a base ref
...
head repository: postcss/postcss-import
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 12.0.0
Choose a head ref
  • 15 commits
  • 4 files changed
  • 4 contributors

Commits on Feb 27, 2018

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    af2747d View commit details

Commits on Apr 12, 2018

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    64ffaa2 View commit details

Commits on Apr 17, 2018

  1. Copy the full SHA
    f72bdc2 View commit details

Commits on May 28, 2018

  1. Copy the full SHA
    3d9dc49 View commit details

Commits on Jun 7, 2018

  1. Copy the full SHA
    c62200b View commit details
  2. Copy the full SHA
    fcc31b1 View commit details

Commits on Jun 13, 2018

  1. Copy the full SHA
    7127b77 View commit details

Commits on Jun 16, 2018

  1. Update prettier to version 1.13.5 (#363)

    Closes #359
    RyanZim authored Jun 16, 2018
    Copy the full SHA
    84d35e2 View commit details

Commits on Aug 4, 2018

  1. Use PostCSS 7 & drop support for Node.js 4 (#372)

    * Require Node.js 6
    
    * Use PostCSS 7
    
    Closes #369
    realityking authored and RyanZim committed Aug 4, 2018
    Copy the full SHA
    9cd2953 View commit details
  2. Drop Node 4 from AppVeyor

    RyanZim committed Aug 4, 2018
    Copy the full SHA
    92e38d7 View commit details
  3. Copy the full SHA
    8c8c7ec View commit details
  4. Update prettier to version 1.14.0 (#373)

    Closes #367
    RyanZim authored Aug 4, 2018
    Copy the full SHA
    1c40a5f View commit details
  5. Copy the full SHA
    3868ce2 View commit details
  6. Copy the full SHA
    d9bc09f View commit details
  7. 12.0.0

    RyanZim committed Aug 4, 2018
    Copy the full SHA
    aae7db3 View commit details
Showing with 21 additions and 10 deletions.
  1. +4 −1 .travis.yml
  2. +5 −0 CHANGELOG.md
  3. +2 −2 appveyor.yml
  4. +10 −7 package.json
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
language: node_js
node_js:
- stable
- 4.5
- 10
- 8
- 6

script: npm run ci
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 12.0.0 - 2018-08-04

- Removed: Support for Node.js v4
- Changed: Uses PostCSS v7 (https://github.com/postcss/postcss/releases/tag/7.0.0)

# 11.1.0 - 2018-02-10

- Added: `filter` option
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@

environment:
matrix:
- nodejs_version: 8
- nodejs_version: 4.5
- nodejs_version: 10
- nodejs_version: 6

version: "{build}"
build: off
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-import",
"version": "11.1.0",
"version": "12.0.0",
"description": "PostCSS plugin to import CSS files",
"keywords": [
"css",
@@ -17,21 +17,24 @@
"index.js",
"lib"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"postcss": "^6.0.1",
"postcss": "^7.0.1",
"postcss-value-parser": "^3.2.3",
"read-cache": "^1.0.0",
"resolve": "^1.1.7"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.16.0",
"eslint-config-i-am-meticulous": "^8.0.0",
"eslint": "^5.0.0",
"eslint-config-i-am-meticulous": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.2.0",
"npmpub": "^3.0.1",
"postcss-scss": "^1.0.0",
"prettier": "1.10.2",
"npmpub": "^4.0.0",
"postcss-scss": "^2.0.0",
"prettier": "1.14.0",
"sugarss": "^1.0.0"
},
"scripts": {