Skip to content

Commit

Permalink
compiler updates
Browse files Browse the repository at this point in the history
  • Loading branch information
deavial committed Aug 22, 2017
1 parent 5a4e2c5 commit 5231a49
Show file tree
Hide file tree
Showing 10 changed files with 609 additions and 22 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,25 @@

* Adding document to illustrate how to migrate a Visual Studio project to NPM so we can stop distributing through NuGet
* Starting to add automated test suite
* updated dependencies

### 1.3.2-beta.2 (August 22, 2017)

* Compiler dependeny updates.

### 1.3.2-beta.1 (August 18, 2017)

* Fixed issue tagging with empty `className` on `html` element on load.
* fixed issue with ie 6 crash.

### 1.3.1 (August 13, 2017)

* Fixed issue where Opera 12 through 14 were detecting as Chrome, WebKit, and Opera
* Added defunctr.browser which will replace defunctr.detective in 2.0
* Deprecated defunctr.detective
* Updated build to current versions

### 1.3.0 (February 10, 2017)

* Modernizr is now optional
* Fixed issues in Safari detection
* Fixed issues in Opera Next detection
Expand All @@ -30,16 +36,20 @@
* Updated dependencies to current versions

### 1.2.3 (May 8, 2016)

* NPM support added

### 1.2.2 (May 8, 2016)

* Fixes for linting issues
* Corrected spelling on css class name `undetected-browser`

## 1.2.1 (January 14, 2016)

* Bower support added

## 1.2.0 (January 14, 2016)

* Support for IE 11
* Support for IE 12 preview
* Support for Edge
Expand Down
6 changes: 3 additions & 3 deletions dist/defunctr-dev.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Defunctr 1.3.2-beta.1
* Defunctr 1.3.2-beta.2
* https://github.com/cinecove/defunctr
*
* Copyright 2012 - 2017 Cinecove Digital, LLC and other contributors
* Released under the MIT license
* https://github.com/cinecove/defunctr/blob/master/LICENSE.md
*
* Build Date: 2017-08-18T19:35:01.456Z
* Build Date: 2017-08-22T16:51:46.219Z
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -507,7 +507,7 @@ var tagger = function (detective) {
var Defunctr = function Defunctr() {
classCallCheck(this, Defunctr);

this.version = '1.3.2-beta.1';
this.version = '1.3.2-beta.2';
this.browser = function browser() {
var d = new Detective();
return {
Expand Down
6 changes: 3 additions & 3 deletions dist/defunctr.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Defunctr 1.3.2-beta.1
* Defunctr 1.3.2-beta.2
* https://github.com/cinecove/defunctr
*
* Copyright 2012 - 2017 Cinecove Digital, LLC and other contributors
* Released under the MIT license
* https://github.com/cinecove/defunctr/blob/master/LICENSE.md
*
* Build Date: 2017-08-18T19:35:01.456Z
* Build Date: 2017-08-22T16:51:46.219Z
*/
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
return typeof obj;
Expand Down Expand Up @@ -501,7 +501,7 @@ var tagger = function (detective) {
var Defunctr = function Defunctr() {
classCallCheck(this, Defunctr);

this.version = '1.3.2-beta.1';
this.version = '1.3.2-beta.2';
this.browser = function browser() {
var d = new Detective();
return {
Expand Down
6 changes: 3 additions & 3 deletions docs/scripts/defunctr.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Defunctr 1.3.2-beta.1
* Defunctr 1.3.2-beta.2
* https://github.com/cinecove/defunctr
*
* Copyright 2012 - 2017 Cinecove Digital, LLC and other contributors
* Released under the MIT license
* https://github.com/cinecove/defunctr/blob/master/LICENSE.md
*
* Build Date: 2017-08-18T19:35:01.456Z
* Build Date: 2017-08-22T16:51:46.219Z
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -507,7 +507,7 @@ var tagger = function (detective) {
var Defunctr = function Defunctr() {
classCallCheck(this, Defunctr);

this.version = '1.3.2-beta.1';
this.version = '1.3.2-beta.2';
this.browser = function browser() {
var d = new Detective();
return {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "defunctr",
"title": "Defunctr",
"description": "JavaScript library for web browser detection by feature detection.",
"version": "1.3.2-beta.1",
"version": "1.3.2-beta.2",
"cdn": "dist/defunctr.js",
"main": "dist/defunctr.js",
"module": "dist/index.js",
Expand Down Expand Up @@ -45,7 +45,7 @@
"babelrc-rollup": "^3.0.0",
"bower": "^1.8.0",
"chai": "^4.1.1",
"eslint": "^4.4.1",
"eslint": "^4.5.0",
"flow": "^0.2.3",
"gulp": "^3.9.1",
"gulp-banner": "^0.1.3",
Expand All @@ -59,7 +59,7 @@
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"pump": "^1.0.2",
"rollup": "^0.47.6",
"rollup": "^0.48.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-watch": "^4.3.1"
Expand Down
Loading

0 comments on commit 5231a49

Please sign in to comment.