Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

borschik

Package Overview
Dependencies
Maintainers
11
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

borschik - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

24

CHANGELOG.md

@@ -0,1 +1,21 @@

# 1.6.1
### Bug fixes
* Fixed path processing in `css` tech (@blond [#124]).
[#124]: https://github.com/borschik/borschik/pull/124
### Dependencies
* `uglify-js` updated to `2.7.4`.
* `minimatch` updated to `3.0.3`.
* `coa` updated to `1.0.1`.
* `inherit` updated to `2.2.6`.
* `vow-fs` updated to `0.3.6`.
# 1.6.0
* `csso` updated to `2.0.0`.
# 1.5.3

@@ -48,3 +68,3 @@ * Fix `enb-borschik` error processing [#112](https://github.com/borschik/borschik/pull/112)

borschik.api({
techOptions: '{ "uglify": { "warnings": true } }'
techOptions: '{ "uglify": { "warnings": true } }'
});

@@ -57,3 +77,3 @@

warnings: true
}
}
}

@@ -60,0 +80,0 @@ });

@@ -0,1 +1,21 @@

# 1.6.1
### Исправления
* В технологии `css` исправлено получение пути к файлу ресурса (@blond [#124]).
[#124]: https://github.com/borschik/borschik/pull/124
### Зависимости
* `uglify-js` обновлён до `2.7.4`.
* `minimatch` обновлён до `3.0.3`.
* `coa` обновлён до `1.0.1`.
* `inherit` обновлён до `2.2.6`.
* `vow-fs` обновлён до `0.3.6`.
# 1.6.0
* `csso` обновлён до `2.0.0`.
# 1.5.3

@@ -48,3 +68,3 @@ * Исправлена обработка ошибок в `enb-borschik` [#112](https://github.com/borschik/borschik/pull/112)

borschik.api({
techOptions: '{ "uglify": { "warnings": true } }'
techOptions: '{ "uglify": { "warnings": true } }'
});

@@ -57,3 +77,3 @@

warnings: true
}
}
}

@@ -60,0 +80,0 @@ });

8

lib/techs/css.js

@@ -1,2 +0,4 @@

var base = require('./css-base'),
var URL = require('url'),
base = require('./css-base'),
U = require('../util'),

@@ -59,3 +61,3 @@

} else if (srcStringRx.test(m[0])) {
// src=...
// src=...
var src = parseSrc(m[0]);

@@ -110,3 +112,3 @@ if (U.isLinkProcessable(src)) found.push({

processPath: function(path) {
return path.replace(/^(.*?)(\?|$)/, '$1');
return typeof path === 'string' ? URL.parse(path).pathname : '';
}

@@ -113,0 +115,0 @@

{
"name": "borschik",
"description": "Extendable builder for text-based file formats",
"version": "1.6.0",
"version": "1.6.1",
"homepage": "http://github.com/borschik/borschik",

@@ -18,18 +18,18 @@ "author": "Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",

"dependencies": {
"minimatch": "3.0.0",
"coa": "0.4.0",
"inherit": "2.2.3",
"minimatch": "3.0.3",
"coa": "1.0.1",
"inherit": "2.2.6",
"vow": "0.4.12",
"vow-fs": "0.3.4",
"vow-fs": "0.3.6",
"csso": "^2.0.0",
"uglify-js": "2.6.2"
"uglify-js": "2.7.4"
},
"devDependencies": {
"istanbul": "0.2.x",
"mocha-istanbul": "0.2.x",
"mocha": "1.20.x"
"coveralls": "^2.11.14",
"mocha": "^3.1.2",
"nyc": "^8.3.2"
},
"scripts": {
"test": "make test",
"coverage": "make coverage"
"test": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},

@@ -36,0 +36,0 @@ "engines": [

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