Socket
Socket
Sign inDemoInstall

postcss-url

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-url - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

CHANGELOG.md

@@ -0,3 +1,7 @@

# 1.0.1 - 2014-10-09
- Fix paths for Windows ([fix #3](https://github.com/postcss/postcss-url/issue/3) via [#4](https://github.com/postcss/postcss-url/pull/4))
# 1.0.0 - 2014-08-24
First release

@@ -48,2 +48,5 @@ /**

newPath = path.relative(to, newPath)
if (path.sep == "\\") {
newPath = newPath.replace(/\\/g, "\/");
}
}

@@ -50,0 +53,0 @@ else if (mode === "inline") {

20

package.json
{
"name": "postcss-url",
"version": "1.0.0",
"version": "1.0.1",
"description": "PostCSS plugin to rebase or inline on url().",

@@ -15,3 +15,3 @@ "keywords": [

],
"author": "MoOx",
"author": "Maxime Thirouin",
"license": "MIT",

@@ -34,15 +34,13 @@ "repository": {

"devDependencies": {
"jscs": "^1.5.9",
"jshint": "^2.5.2",
"jshint-stylish": "^0.4.0",
"postcss": "^2.2.1",
"postcss-import": "^1.0.0",
"tap-colorize": "^1.2.0",
"tape": "^2.14.0"
"jscs": "^1.6.2",
"jshint": "^2.5.6",
"postcss": "^2.2.5",
"postcss-import": "^1.0.2",
"tape": "^3.0.0"
},
"scripts": {
"jscs": "jscs *.js **/*.js",
"jshint": "jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js",
"test": "npm run jscs && npm run jshint && tape test | tap-colorize"
"jshint": "jshint . --exclude-path .gitignore",
"test": "npm run jscs && npm run jshint && npm run standalone && tape test"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc