Skip to content

Commit

Permalink
feat: Removed gulp-util
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removed deprecated gulp-util

#28 #29
  • Loading branch information
roman.vasilev committed Oct 13, 2018
1 parent 2e19116 commit 180a775
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 43 deletions.
29 changes: 0 additions & 29 deletions gulpfile.js

This file was deleted.

59 changes: 45 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "gulp-cssimport",
"version": "6.0.1",
"version": "7.0.0",
"description": "Parses a CSS file, finds imports, grabs the content of the linked file and replaces the import statement with it.",
"main": "gulp-cssimport.js",
"scripts": {
"np": "np",
"test": "cd test && node index.js"
"test": "cd test && node index.js",
"prepublishOnly": "sed -i -e 's/devDependencies/_devDependencies/g' package.json"
},
"repository": {
"type": "git",
Expand All @@ -18,10 +18,9 @@
],
"dependencies": {
"collect-stream": "^1.2.1",
"deep-extend": "^0.5.0",
"deep-extend": "^0.6.0",
"plugin-error": "^0.1.2",
"minimist": "^1.2.0",
"vinyl": "^2.1.0",
"vinyl": "^2.2.0",
"http-https": "^1.0.0",
"lodash.trim": "^4.5.1",
"lookup-path": "^0.3.1",
Expand All @@ -33,12 +32,44 @@
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"gulp": "3",
"gulp-bump": "^3.1.1",
"gulp-eslint": "^5.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-sourcemaps": "*",
"tape": "^4.9.1"
"tape": "^4.9.1",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"semantic-release": "^15.9.15",
"@semantic-release/npm": "^5.0.4"
},
"license": "MIT"
}
"license": "MIT",
"release": {
"generateNotes": {
"writerOpts": {
"__keep": "me"
}
},
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}

0 comments on commit 180a775

Please sign in to comment.