broccoli-sri-hash
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,8 @@ | ||
# 1.1.1 | ||
- @kellyselden fixes for node 0.10 | ||
- windows cmd fix | ||
- adding promise polyfill for node 0.10 | ||
- adding appveyor badge | ||
- mirroring ember-cli travis envs | ||
# 1.1.0 | ||
@@ -2,0 +9,0 @@ - Added in a temporary fix for Unicode encoding issue which disables the code if the library detects unicode. |
@@ -8,2 +8,3 @@ var Filter = require('broccoli-filter'); | ||
var hrefCheck = /\shref=["\']([^"\']+)["\']/; | ||
var Promise = require('rsvp').Promise; // node 0.10 | ||
@@ -10,0 +11,0 @@ function SRIHashAssets(inputNode, options) { |
{ | ||
"name": "broccoli-sri-hash", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Generates SRI hashes for html files", | ||
@@ -8,3 +8,3 @@ "main": "index.js", | ||
"lint": "eslint index.js", | ||
"test": "mkdir tmp; rm -rf tmp/output/; rm -rf tmp/lint-out && npm run lint > tmp/lint-out; broccoli build tmp/output && mocha" | ||
"test": "rm -rf tmp && mkdir tmp && npm run lint > tmp/lint-out && broccoli build tmp/output && mocha" | ||
}, | ||
@@ -20,6 +20,9 @@ "author": "Jonathan Kingston", | ||
"broccoli-filter": "^1.1.0", | ||
"rsvp": "^3.0.0", | ||
"sri-toolbox": "^0.2.0" | ||
}, | ||
"devDependencies": { | ||
"broccoli-cli": "^1.0.0", | ||
"chai": "^3.0.0", | ||
"eslint": "^1.0.0", | ||
"eslint-config-nightmare-mode": "0.1.0", | ||
@@ -26,0 +29,0 @@ "mocha": "^2.2.5" |
# SRI for broccoli | ||
[![build status](https://secure.travis-ci.org/jonathanKingston/broccoli-sri-hash.svg)](http://travis-ci.org/jonathanKingston/broccoli-sri-hash) | ||
[![build status](https://ci.appveyor.com/api/projects/status/github/jonathanKingston/broccoli-sri-hash?branch=master&svg=true)](https://ci.appveyor.com/project/jonathanKingston/broccoli-sri-hash/branch/master) | ||
[![npm status](http://img.shields.io/npm/v/broccoli-sri-hash.svg)](https://www.npmjs.org/package/broccoli-sri-hash) | ||
@@ -4,0 +5,0 @@ [![dependency status](https://david-dm.org/jonathanKingston/broccoli-sri-hash.svg)](https://david-dm.org/jonathanKingston/broccoli-sri-hash) |
Sorry, the diff of this file is not supported yet
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
187658
881
32
0
4
5
+ Addedrsvp@^3.0.0