Skip to content

Commit

Permalink
bumpedd version number and copyright date
Browse files Browse the repository at this point in the history
  • Loading branch information
mattboldt committed May 26, 2018
1 parent 4cfea5c commit 04d65a9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Matt Boldt
Copyright (c) 2018 Matt Boldt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "typed.js",
"version": "2.0.6",
"version": "2.0.7",
"homepage": "https://github.com/mattboldt/typed.js",
"authors": [
"Matt Boldt <me@mattboldt.com>"
Expand Down
16 changes: 8 additions & 8 deletions gulpfile.js
Expand Up @@ -47,25 +47,25 @@ gulp.task('html-docs', () => {
return gulp.src('./src/*.js')
.pipe(gulpDocumentation('html'), {}, {
name: 'Typed.js Docs',
version: '2.0.6'
version: '2.0.7'
})
.pipe(gulp.dest('docs'));
});

gulp.task('server', function () {
// Start the server at the beginning of the task
// Start the server at the beginning of the task
server.run(['app.js']);
// Restart the server when file changes
// Restart the server when file changes
gulp.watch(['docs/**/*.html'], server.notify);
gulp.watch(['docs/styles/**/*.scss'], ['styles:scss']);
//gulp.watch(['{.tmp,app}/styles/**/*.css'], ['styles:css', server.notify]);
//Event object won't pass down to gulp.watch's callback if there's more than one of them.
//So the correct way to use server.notify is as following:
//gulp.watch(['{.tmp,app}/styles/**/*.css'], ['styles:css', server.notify]);
//Event object won't pass down to gulp.watch's callback if there's more than one of them.
//So the correct way to use server.notify is as following:
gulp.watch(['{.tmp,docs}/styles/**/*.css'], function(event){
gulp.run('styles:css');
server.notify(event);
//pipe support is added for server.notify since v0.1.5,
//see https://github.com/gimm/gulp-express#servernotifyevent
//pipe support is added for server.notify since v0.1.5,
//see https://github.com/gimm/gulp-express#servernotifyevent
});

gulp.watch(['docs/scripts/**/*.js'], ['jshint']);
Expand Down
2 changes: 1 addition & 1 deletion lib/typed.js
Expand Up @@ -2,7 +2,7 @@
*
* typed.js - A JavaScript Typing Animation Library
* Author: Matt Boldt <me@mattboldt.com>
* Version: v2.0.6
* Version: v2.0.7
* Url: https://github.com/mattboldt/typed.js
* License(s): MIT
*
Expand Down
2 changes: 1 addition & 1 deletion lib/typed.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/typed.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "typed.js",
"version": "2.0.6",
"version": "2.0.7",
"homepage": "https://github.com/mattboldt/typed.js",
"repository": "https://github.com/mattboldt/typed.js",
"license": "MIT",
Expand Down

0 comments on commit 04d65a9

Please sign in to comment.