Skip to content

Commit 98bea59

Browse files
committed
fix wrong path, v 0.0.2
1 parent 8a97e75 commit 98bea59

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

build/tasks/link.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var gulp = require('gulp');
22
var exec = require('child_process').exec;
33

44
gulp.task('link', function (cb) {
5-
exec('jspm link github:benib/aurelia-hammer@dev -y', function (err, stdout, stderr) {
5+
exec('jspm link github:benib/aurelia-hammer -y', function (err, stdout, stderr) {
66
console.log(stdout);
77
console.log(stderr);
88
cb(err);

dist/amd/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ define(['exports'], function (exports) {
77
exports.configure = configure;
88

99
function configure(frameworkConfig) {
10-
frameworkConfig.globalResources('./swipe');
10+
frameworkConfig.globalResources('./hammer-swipe');
1111
}
1212
});

dist/commonjs/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Object.defineProperty(exports, '__esModule', {
66
exports.configure = configure;
77

88
function configure(frameworkConfig) {
9-
frameworkConfig.globalResources('./swipe');
9+
frameworkConfig.globalResources('./hammer-swipe');
1010
}

dist/es6/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export function configure(frameworkConfig) {
2-
frameworkConfig.globalResources('./swipe');
2+
frameworkConfig.globalResources('./hammer-swipe');
33
}

dist/system/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ System.register([], function (_export) {
44
_export('configure', configure);
55

66
function configure(frameworkConfig) {
7-
frameworkConfig.globalResources('./swipe');
7+
frameworkConfig.globalResources('./hammer-swipe');
88
}
99

1010
return {

doc/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.0.2 (2015-09-17)
2+
3+
Fix wrong path
4+
15
### 0.0.1 (2015-09-17)
26

37
Inital release of aurelia-hammer

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-hammer",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "A plugin for Aurelia providing Custom Attributes for Hammer.JS",
55
"keywords": [
66
"aurelia",

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export function configure(frameworkConfig) {
2-
frameworkConfig.globalResources('./swipe');
2+
frameworkConfig.globalResources('./hammer-swipe');
33
}

0 commit comments

Comments
 (0)