Skip to content

Commit adfac4e

Browse files
committed
Merge pull request #11 from imgix/temp-npm-fix
Temporary NPM fix
2 parents 85f1710 + 5f88f05 commit adfac4e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drift",
33
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
44
"main": [
5-
"dist/drift.js",
5+
"dist/Drift.js",
66
"dist/drift-basic.css"
77
],
88
"authors": [

dist/Drift.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
2727

2828
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2929

30-
var VERSION = exports.VERSION = '0.1.2';
30+
var VERSION = exports.VERSION = '0.1.3';
3131

3232
var Drift = (function () {
3333
function Drift(triggerEl) {

dist/Drift.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "drift-zoom",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "Easily add \"zoom on hover\" functionality to your site's images. Lightweight, no-dependency JavaScript.",
5-
"main": "index.js",
5+
"main": "src/js/Drift.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},

src/js/Drift.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import injectBaseStylesheet from './injectBaseStylesheet';
44
import Trigger from './Trigger';
55
import ZoomPane from './ZoomPane';
66

7-
export const VERSION = '0.1.2';
7+
export const VERSION = '0.1.3';
88

99
export default class Drift {
1010
constructor(triggerEl, options = {}) {

0 commit comments

Comments
 (0)