Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 72d5aad

Browse files
author
Sven Tschui
committed
Make postcss a peer. Bump minimatch
1 parent 556b3ef commit 72d5aad

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
var postcss = require('postcss');
22
var minimatch = require('minimatch');
3-
var Promise = require('promise');
43
var path = require('path');
54

65
module.exports = main;

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
},
2424
"homepage": "https://github.com/axa-ch/metalsmith-postcss",
2525
"dependencies": {
26-
"minimatch": "^2.0.1",
27-
"path": "^0.12.7",
28-
"postcss": "^5.0.4 || ^6.0.0",
29-
"promise": "^7.0.4"
26+
"minimatch": "^3.0.4"
27+
},
28+
"peerDependencies": {
29+
"postcss": "^5.0.4 || ^6.0.0"
3030
},
3131
"devDependencies": {
3232
"assert-dir-equal": "^1.0.1",

test/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ describe('metalsmith-postcss', function () {
5252
});
5353
});
5454

55-
it('should rename sourcemap files');
56-
57-
it('should find and use previous sourcemaps');
58-
5955
it('should pass absolute paths to postcss', function (done) {
6056
var metalsmith = Metalsmith(fixture('use-absolute-paths'));
6157
metalsmith

0 commit comments

Comments
 (0)