gonzales-pe
Advanced tools
Comparing version 3.3.1 to 3.3.2
@@ -16,2 +16,3 @@ { | ||
"esnext": true, | ||
"excludeFiles": ["src/syntaxes.js"], | ||
"maximumLineLength": 80, | ||
@@ -18,0 +19,0 @@ "requireBlocksOnNewline": 1, |
@@ -10,2 +10,11 @@ # Changelog | ||
## 18.05.2016, Version 3.3.2 | ||
:star: Added AppVeyor badge. | ||
:green_apple: Fixed build file to glue multiple syntaxes into one file. | ||
:green_apple: Fixed parsing of functions inside urls in Sass. | ||
:green_apple: Fixed parsing of mulitple keyframe selectors in CSS, Sass and SCSS. | ||
:green_apple: Fixed parsing of parent selector as property in Sass and SCSS. | ||
:green_apple: Fixed parsing of parent selector inside interpolations in Sass and SCSS. | ||
## 29.04.2016, Version 3.3.1 | ||
@@ -12,0 +21,0 @@ |
{ | ||
"name": "gonzales-pe", | ||
"description": "Gonzales Preprocessor Edition (fast CSS parser)", | ||
"version": "3.3.1", | ||
"version": "3.3.2", | ||
"homepage": "http://github.com/tonyganch/gonzales-pe", | ||
@@ -25,3 +25,3 @@ "bugs": "http://github.com/tonyganch/gonzales-pe/issues", | ||
"postpublish": "bash ./scripts/postpublish.sh", | ||
"test": "bash ./scripts/build.sh && bash ./scripts/test.sh", | ||
"test": "bash ./scripts/test.sh", | ||
"watch": "bash ./scripts/watch.sh" | ||
@@ -28,0 +28,0 @@ }, |
@@ -1,5 +0,7 @@ | ||
# Gonzales PE @3.2.1 | ||
# Gonzales PE @3.3.2 | ||
[![Build Status](https://travis-ci.org/tonyganch/gonzales-pe.svg?branch=3.0)] | ||
(https://travis-ci.org/tonyganch/gonzales-pe) | ||
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/m29jphtrqt398v2o/branch/dev?svg=true)] | ||
(https://ci.appveyor.com/project/tonyganch/gonzales-pe/branch/dev) | ||
@@ -14,3 +16,3 @@ Gonzales PE is a CSS parser which plays nicely with preprocessors. | ||
```bash | ||
npm install -g gonzales-pe@3.2.1 | ||
npm install -g gonzales-pe@3.3.2 | ||
``` | ||
@@ -21,3 +23,3 @@ | ||
```bash | ||
npm install --save gonzales-pe@3.2.1 | ||
npm install --save gonzales-pe@3.3.2 | ||
``` | ||
@@ -24,0 +26,0 @@ |
@@ -1,3 +0,1 @@ | ||
var syntax = process.env.SYNTAX && process.env.SYNTAX.toLowerCase(); | ||
module.exports = { | ||
@@ -8,4 +6,4 @@ entry: { | ||
output: { | ||
filename: syntax ? 'gonzales-' + syntax + '.js' : 'gonzales.js', | ||
library: syntax ? 'gonzales-' + syntax : 'gonzales', | ||
filename: 'gonzales.js', | ||
library: 'gonzales', | ||
libraryTarget: 'umd', | ||
@@ -26,11 +24,3 @@ path: __dirname + '/lib' | ||
] | ||
}, | ||
resolve: { | ||
modulesDirectories: ['src'], | ||
alias: { | ||
syntaxes: syntax ? | ||
__dirname + '/src/' + syntax : | ||
__dirname + '/src/syntaxes' | ||
} | ||
} | ||
}; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
800
168963
2324