Skip to content

Commit

Permalink
Release v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Du Pont committed Dec 11, 2018
2 parents 9fc8d72 + 507de82 commit 6b4627d
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
- :sparkles: Improve `Core.attach(links)` method
- :sparkles: Improve `Core.detach(links)` method
- :art: Invert `from` and `to` parameters of the `NAVIGATE_END` event
- :bug: Fix [issue #44](https://github.com/Dogstudio/highway/issues/44)

#### 2.0.x

Expand Down
17 changes: 14 additions & 3 deletions build/highway.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
define("Highway", [], function() { return /******/ (function(modules) { // webpackBootstrap
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("Highway", [], factory);
else if(typeof exports === 'object')
exports["Highway"] = factory();
else
root["Highway"] = factory();
})(window, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
Expand Down Expand Up @@ -2772,7 +2782,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
* @author Anthony Du Pont <[email protected]>
*/
// Highway Version
console.log('Highway v2.1.0'); // Export Highway
console.log('Highway v2.1.1'); // Export Highway

var _default = {
Core: _core.default,
Expand Down Expand Up @@ -4661,4 +4671,5 @@ function () {
exports.default = Transition;

/***/ })
/******/ ])});;
/******/ ]);
});
2 changes: 1 addition & 1 deletion build/highway.min.js

Large diffs are not rendered by default.

Binary file modified build/highway.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/assets/js/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dogstudio/highway",
"license": "MIT",
"version": "2.1.0",
"version": "2.1.1",
"main": "assets/js/main.js",
"scripts": {
"build": "webpack && jekyll build",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dogstudio/highway",
"license": "MIT",
"version": "2.1.0",
"version": "2.1.1",
"description": "Highway helps you manage your page transitions",
"main": "build/highway.js",
"unpkg": "build/highway.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/highway.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Renderer from './renderer';
import Transition from './transition';

// Highway Version
console.log('Highway v2.1.0');
console.log('Highway v2.1.1');

// Export Highway
export default {
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ module.exports = {
path: path.resolve(__dirname, 'build'),
filename: '[name].js',
library: 'Highway',
libraryTarget: 'amd'
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
Expand Down

0 comments on commit 6b4627d

Please sign in to comment.