Skip to content

Commit 31b211c

Browse files
author
daniel-lundin
committed
Release 0.6.0
1 parent 94f9416 commit 31b211c

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ Fast animations with Javascript and CSS transforms
1313

1414
- [Card formations](http://daniel-lundin.github.io/snabbt.js/cards.html)
1515
- [Crazy sticks](http://daniel-lundin.github.io/snabbt.js/sticks.html)
16+
- [Periodic table](http://daniel-lundin.github.io/snabbt.js/periodic.html)
17+
- [Laser words](http://daniel-lundin.github.io/snabbt.js/words.html)
1618

1719
## Releases
1820
The initial release is out. Would love some feedback on things that can be improved. The release(and future ones) can be found in the release section
1921

22+
- **0.6.0** - ES6, test suite, life cycle events, new demos
2023
- **0.5.8** - Add new tweenable property scalePost/fromScalePost
2124
- **0.5.7** - Fix issues manual mode and spring easings
2225
- **0.5.6** - Fix issues with duration: 0

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snabbt.js",
3-
"version": "0.5.8",
3+
"version": "0.6.0",
44
"description": "Fast animations with javascript and CSS-transforms",
55
"main": "snabbt.js",
66
"files": [
@@ -15,7 +15,9 @@
1515
"watch": "watchify -v -t babelify src/main.js -o snabbt.js",
1616
"test": "mocha src/**/*Tests.js --harmony",
1717
"tdd": "mocha src/**/*Tests.js --harmony --watch",
18-
"build": "browserify -t babelify src/main.js -o snabbt.js && uglifyjs --compress --mangle -- snabbt.js > snabbt.min.js"
18+
"build": "browserify -t babelify src/main.js -o snabbt.js && uglifyjs --compress --mangle -- snabbt.js > snabbt.min.js",
19+
"bannerify": "cat snabbt.js > /tmp/snabbt.js && node banner.js > snabbt.js && cat /tmp/snabbt.js >> snabbt.js && cat snabbt.min.js > /tmp/snabbt.min.js && node banner.js > snabbt.min.js && cat /tmp/snabbt.min.js >> snabbt.min.js",
20+
"release": "npm run build && npm run bannerify"
1921
},
2022
"repository": {
2123
"type": "git",
@@ -26,10 +28,11 @@
2628
"devDependencies": {
2729
"babelify": "^6.3.0",
2830
"chai": "^3.3.0",
31+
"chai-string": "^1.1.4",
2932
"mocha": "^2.3.3",
33+
"moment": "^2.10.6",
3034
"sinon": "^1.17.1",
31-
"watchify": "^3.4.0",
32-
"chai-string": "^1.1.4"
35+
"watchify": "^3.4.0"
3336
},
3437
"spm": {
3538
"main": "snabbt.js",

snabbt.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* snabbt.js Version: 0.6.0 Build date: 2015-12-11 (c) 2015 Daniel Lundin @license MIT */
12
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
23
'use strict';
34
var utils = require('./utils.js');

snabbt.min.js

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

0 commit comments

Comments
 (0)