Skip to content

Commit

Permalink
Moved the pages to the correct branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kmp1 committed Feb 14, 2015
1 parent eaf3ec2 commit daca3f0
Show file tree
Hide file tree
Showing 26 changed files with 590 additions and 1,071 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ node_modules
# Users Environment Variables
.lock-wscript

_site
.DS_Store
dist
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: node_js
node_js:
- "0.10"
before_install: npm install -g grunt-cli
install: npm install
before_script: grunt
61 changes: 61 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
module.exports = function(grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
separator: ';'
},
dist: {
src: ['src/**/*.js'],
dest: 'dist/<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
dist: {
files: {
'dist/<%= pkg.name %>.min.js': ['<%= concat.dist.dest %>']
}
}
},
nodeunit: {
all: ['test/*_test.js']
},
jshint: {
files: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js'],
options: {
globals: {
jQuery: false,
console: true,
module: true,
document: true
}
}
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['jshint', 'nodeunit']
},
jsdoc : {
dist : {
src: ['src/*.js'],
options: {
destination: 'dist/doc'
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-jsdoc');

grunt.registerTask('test', ['jshint', 'nodeunit']);
grunt.registerTask('default', ['jshint', 'nodeunit', 'concat', 'uglify', 'jsdoc']);
};
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<<<<<<< HEAD
# tzx.js

[![Build Status](https://travis-ci.org/kmp1/tzx.js.svg)](https://travis-ci.org/kmp1/tzx.js)

A javascript .tzx (and .tap) data file API (for converting ZX Spectrum games to wav files)
=======

Expand Down
36 changes: 0 additions & 36 deletions _config.yml

This file was deleted.

15 changes: 0 additions & 15 deletions _includes/analytics.html

This file was deleted.

Loading

0 comments on commit daca3f0

Please sign in to comment.