Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joe-watkins/grunt-tenon-client-starter
A simple starter demo for Grunt Tenon - Tenon.io
https://github.com/joe-watkins/grunt-tenon-client-starter
Last synced: 10 days ago
JSON representation
A simple starter demo for Grunt Tenon - Tenon.io
- Host: GitHub
- URL: https://github.com/joe-watkins/grunt-tenon-client-starter
- Owner: joe-watkins
- Created: 2014-11-30T17:25:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-28T23:41:33.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T22:35:56.256Z (9 months ago)
- Language: JavaScript
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Grunt Tenon Client Starter
This is a simple starter package to get up and running with Grunt [Tenon](http://www.tenon.io). Be sure to [signup for a free account at Tenon.io](http://www.tenon.io/register.php) to obtain the API key needed for using this Grunt plugin.## Setup
1. From the command line run ``npm install`` this will setup the required node modules
2. Add your Tenon.io API Key to the Gruntfile.js on line #19
3. From the command line run ``grunt`` to start up Grunt.
4. Make edits to the index.html file and watch Grunt-Tenon work its magic. Keep you eyes on the terminal for output from the Tenon plugin.## Basic Grunt Settings
```
tenon: {
options: {
key: 'you api key here', // ADD YOUR API KEY HERE
filter: [31, 54],
level: 'AA' // AA OR AAA
},
all: {
options: {
saveOutputIn: 'allHtml.json',
snippet: true,
asyncLim: 2
},
src: ['index.html']
},
index: {
src: ['index.html']
}
}
```