Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
eonarheim committed Sep 8, 2016
1 parent 1743cb7 commit ca810e6
Show file tree
Hide file tree
Showing 16 changed files with 13 additions and 22 deletions.
4 changes: 3 additions & 1 deletion GruntFile.js
Expand Up @@ -161,6 +161,8 @@ module.exports = function (grunt) {
copy: {
main: {
files: [
{src: './src/<%= pkg.name %>.js', dest: './dist/<%= pkg.name %>.js'},
{src: './src/<%= pkg.name %>.d.ts', dest: './dist/<%= pkg.name %>.d.ts'},
{src: './dist/<%= pkg.name %>.js', dest: './dist/<%= pkg.name %>-<%= pkg.version %>.js'},
{src: './dist/<%= pkg.name %>.min.js', dest: './dist/<%= pkg.name %>-<%= pkg.version %>.min.js'},
{src: './dist/<%= pkg.name %>.d.ts', dest: './dist/<%= pkg.name %>-<%= pkg.version %>.d.ts'},
Expand Down Expand Up @@ -195,7 +197,7 @@ module.exports = function (grunt) {
grunt.registerTask('tests', ['shell:specs', 'shell:tests']);

// Default task - compile, test, build dists
grunt.registerTask('default', ['shell:tsc', 'concat:node', 'shell:tscnode', 'minified', 'concat', 'copy', 'shell:nuget', 'example', 'tests']);
grunt.registerTask('default', ['shell:tsc', 'concat:node', 'shell:tscnode', 'concat', 'copy', 'shell:nuget', 'example', 'tests']);

// Build example

Expand Down
4 changes: 2 additions & 2 deletions bower.json
@@ -1,12 +1,12 @@
{
"name": "typestate",
"version": "1.0.3",
"version": "1.0.4",
"homepage": "https://github.com/eonarheim/TypeState",
"authors": [
"Erik Onarheim"
],
"description": "A small finite state machine implementation in TypeScript.",
"main": "dist/typestate-1.0.3.js",
"main": "dist/typestate-1.0.4.js",
"keywords": [
"Finite",
"State",
Expand Down
Binary file removed dist/TypeState.1.0.3.nupkg
Binary file not shown.
Binary file added dist/TypeState.1.0.4.nupkg
Binary file not shown.
1 change: 0 additions & 1 deletion dist/typestate-1.0.3.min.js

This file was deleted.

File renamed without changes.
6 changes: 0 additions & 6 deletions dist/typestate-1.0.3.js → dist/typestate-1.0.4.js

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

3 changes: 3 additions & 0 deletions dist/typestate-1.0.4.min.js
@@ -0,0 +1,3 @@
/*! typestate - v1.0.4 - 2016-09-07
* https://github.com/eonarheim/TypeState
* Copyright (c) 2016 Erik Onarheim; Licensed BSD-2-Clause*/
File renamed without changes.

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

2 changes: 1 addition & 1 deletion dist/typestate-node.js

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

6 changes: 0 additions & 6 deletions dist/typestate.js

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

1 change: 0 additions & 1 deletion dist/typestate.js.map

This file was deleted.

1 change: 0 additions & 1 deletion dist/typestate.min.js

This file was deleted.

2 changes: 1 addition & 1 deletion example/index.html
@@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<title>TypedFSM Example</title>
<title>TypeState Example</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
Expand Down
3 changes: 2 additions & 1 deletion package.json
@@ -1,8 +1,9 @@
{
"name": "typestate",
"version": "1.0.3",
"version": "1.0.4",
"description": "A small finite state machine implementation in TypeScript.",
"main": "dist/typestate-node.js",
"typings": "dist/typestate-node.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/eonarheim/TypeState.git"
Expand Down

0 comments on commit ca810e6

Please sign in to comment.