Skip to content

Commit

Permalink
Update from browser-template
Browse files Browse the repository at this point in the history
- Add current license info to README
- Add grunt aliases
- Update example spec to use const instead of var
  • Loading branch information
racheltstevens committed Oct 17, 2016
1 parent 1fe222c commit 9408248
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,5 +208,5 @@ understanding is [this CSS-tricks blog post](https://css-tricks.com/absolute-pos

## [License](LICENSE)

Source code distributed under the MIT license. Text and other assets copyright
General Assembly, Inc., all rights reserved.
1. All content is licensed under a CC­BY­NC­SA 4.0 license.
1. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact [email protected].
4 changes: 3 additions & 1 deletion grunt/aliases.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"default": ["nag"],
"build": ["webpack:build"],
"serve": ["webpack-dev-server:start"],
"server": ["webpack-dev-server:start"],
"serve": ["server"],
"s": ["server"],
"nag": ["jshint", "jsonlint:all", "jscs:status"],
"reformat": ["jscs:write"],
"test": ["build", "jasmine"]
Expand Down
2 changes: 1 addition & 1 deletion spec/example.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var example = require('../assets/scripts/example');
const example = require('../assets/scripts/example');

describe('Example', function () {
it('is true', function () {
Expand Down

0 comments on commit 9408248

Please sign in to comment.