Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Fixed missing image
Browse files Browse the repository at this point in the history
  • Loading branch information
Benajmin Bondi committed Aug 3, 2017
1 parent 4a7a10f commit 6ef23ee
Show file tree
Hide file tree
Showing 14 changed files with 12 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
Run the jspm install command :

```
jspm instal npm:aurelia-multi-select@^1.0.0
jspm install aurelia-multiple-select=github:bondib/aurelia-multiple-select
```

then update your ```main.ts``` or ```main.js``` file.
Expand Down
1 change: 1 addition & 0 deletions build/pathsBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = {
source: appRoot + '**/*.ts',
html: appRoot + '**/*.html',
css: appRoot + '**/*.css',
img: appRoot + 'img/**',
json: appRoot + '**/*.json',
woff2: appRoot + '**/*.woff2',
output: outputRoot,
Expand Down
1 change: 1 addition & 0 deletions build/pathsSample.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
source: appRoot + '**/*.ts',
html: appRoot + '**/*.html',
css: appRoot + '**/*.css',
img: appRoot + 'img/**',
json: appRoot + '**/*.json',
woff2: appRoot + '**/*.woff2',
plugin:plugin,
Expand Down
10 changes: 9 additions & 1 deletion build/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ gulp.task('build-css', function () {
.pipe(gulp.dest(paths.output + 'system'));
});

gulp.task('build-img', function () {
return gulp.src(paths.img)
.pipe(gulp.dest(paths.output + 'es2015/img'))
.pipe(gulp.dest(paths.output + 'commonjs/img'))
.pipe(gulp.dest(paths.output + 'amd/img'))
.pipe(gulp.dest(paths.output + 'system/img'));
});


gulp.task('build-json', function () {
return gulp.src(paths.json)
Expand All @@ -123,7 +131,7 @@ gulp.task('build-woff2', function () {

gulp.task('build', function (callback) {
return runSequence(
'clean-build', ['build-json', 'build-woff2', 'build-css', 'build-html', 'build-es2015', 'build-amd', 'build-system', 'build-commonjs'],
'clean-build', ['build-json', 'build-woff2', 'build-css', 'build-img', 'build-html', 'build-es2015', 'build-amd', 'build-system', 'build-commonjs'],
callback
);
});
Expand Down
3 changes: 0 additions & 3 deletions dist/amd/elements/multiple-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
</div>
</div>

<button click.delegate="removeFirst()">Test</button>


</template>
Binary file added dist/amd/img/switch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions dist/commonjs/elements/multiple-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
</div>
</div>

<button click.delegate="removeFirst()">Test</button>


</template>
Binary file added dist/commonjs/img/switch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions dist/es2015/elements/multiple-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
</div>
</div>

<button click.delegate="removeFirst()">Test</button>


</template>
Binary file added dist/es2015/img/switch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions dist/system/elements/multiple-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
</div>
</div>

<button click.delegate="removeFirst()">Test</button>


</template>
Binary file added dist/system/img/switch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions src/elements/multiple-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
</div>
</div>

<button click.delegate="removeFirst()">Test</button>


</template>
Binary file added src/img/switch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6ef23ee

Please sign in to comment.