Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
initial setup for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
james2doyle committed Sep 9, 2013
1 parent 64ee8ee commit e1a5e5e
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .gitignore
@@ -1,2 +1,20 @@
.DS_Store
.tern-port
.tern-port

###Node###

lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules
31 changes: 31 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,31 @@
/*global module:false*/
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
// Task configuration.
uglify: {
options: {
banner: '<%= banner %>'
},
dist: {
src: ['js/**/*.js', '!js/<%= pkg.name %>.min.js'],
dest: 'js/<%= pkg.name %>.min.js'
}
}
});

// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-uglify');

// Default task.
grunt.registerTask('default', ['concat', 'uglify']);

};
Empty file added css/style.css
Empty file.
File renamed without changes.
File renamed without changes.
32 changes: 32 additions & 0 deletions package.json
@@ -0,0 +1,32 @@
{
"name": "saltjs",
"version": "1.0.0",
"description": "a micro DOM selector library built off the native DOM",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/james2doyle/saltjs"
},
"keywords": [
"salt",
"$",
"micro",
"DOM",
"mini"
],
"author": "James Doyle",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "64ee8ee4ae37e9dccd1d403d14cc1bc61cbe737f",
"bugs": {
"url": "https://github.com/james2doyle/saltjs/issues"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "*",
"robotskirt": "~2.7.1"
}
}

0 comments on commit e1a5e5e

Please sign in to comment.