Skip to content
This repository was archived by the owner on Dec 7, 2017. It is now read-only.

Commit 2e8c762

Browse files
committed
Merge branch 'master' of github.com:philipwalton/html-inspector
2 parents 94d112d + fea2f2d commit 2e8c762

File tree

8 files changed

+128
-125
lines changed

8 files changed

+128
-125
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.8.0 (February 7, 2014)
2+
3+
* Remove the UMD wrapper to avoid CLI conflicts on pages using AMD.
4+
15
### 0.7.3 (January 27, 2014)
26

37
* Move shelljs from devDependencies to dependencies.

Gruntfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ module.exports = function(grunt) {
4242
browserify: {
4343
dist: {
4444
src: "src/html-inspector.js",
45-
dest: "<%= pkg.name %>.js",
46-
options: {
47-
standalone: "HTMLInspector"
48-
}
45+
dest: "<%= pkg.name %>.js"
4946
}
5047
},
5148

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For a more formal introduction, please refer to [this blog post](http://philipwa
2424
The easiest way to try out HTML Inspector is to link to the source file hosted on [CDNJS](http://cdnjs.com/):
2525

2626
```html
27-
<script src="http://cdnjs.cloudflare.com/ajax/libs/html-inspector/0.7.3/html-inspector.js"></script>
27+
<script src="http://cdnjs.cloudflare.com/ajax/libs/html-inspector/0.8.0/html-inspector.js"></script>
2828
```
2929

3030
It can also be install via [NPM](https://npmjs.org/) or [Bower](https://github.com/bower/bower):

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html-inspector",
3-
"version": "0.7.3",
3+
"version": "0.8.0",
44
"main": "html-inspector.js",
55
"ignore": [
66
"bin",

0 commit comments

Comments
 (0)