-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
96 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
|
||
types: [ | ||
{value: 'feat', name: 'feat: A new feature'}, | ||
{value: 'fix', name: 'fix: A bug fix'}, | ||
{value: 'docs', name: 'docs: Documentation only changes'}, | ||
{value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)'}, | ||
{value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature'}, | ||
{value: 'perf', name: 'perf: A code change that improves performance'}, | ||
{value: 'test', name: 'test: Adding missing tests'}, | ||
{value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation'}, | ||
{value: 'revert', name: 'revert: Revert to a commit'}, | ||
{value: 'WIP', name: 'WIP: Work in progress'} | ||
], | ||
|
||
allowBreakingChanges: ['feat', 'fix', 'perf'] | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.DS_Store | ||
tmp | ||
lib-cov | ||
*.seed | ||
*.log | ||
|
@@ -14,4 +15,3 @@ results | |
|
||
node_modules | ||
npm-debug.log | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
test | ||
.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
language: node_js | ||
node_js: | ||
- "0.8.23" | ||
before_install: | ||
- "npm install -g mocha" | ||
- "npm install -g grunt-cli" | ||
node_js: "6" | ||
after_success: | ||
- npm run semantic-release |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,18 @@ | |
"name": "topcoat-navigation-bar-base", | ||
"version": "0.6.0", | ||
"description": "Topcoat navigation bar base", | ||
"main": "index.html", | ||
"style": "src/navigation-bar.css", | ||
"directories": { | ||
"test": "test", | ||
"lib": "src", | ||
"bin": "css" | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "grunt test", | ||
"prepublish": "grunt" | ||
"test": "ava test", | ||
"prepublish": "rsn -p './' -o ./css/navigation-bar-base.css ./test/navigation-bar-base.fixture.css", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/topcoat/navigation-bar-base.git" | ||
"url": "https://github.com/topcoat/navigation-bar-base.git" | ||
}, | ||
"keywords": [ | ||
"navigation", | ||
|
@@ -25,16 +23,33 @@ | |
"base", | ||
"adobe" | ||
], | ||
"author": "@dam", | ||
"license": "Apache2", | ||
"devDependencies": { | ||
"grunt": "~0.4.1", | ||
"grunt-contrib-cssmin": "~0.6.1", | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-simple-mocha": "~0.4.0", | ||
"grunt-topcoat": "~0.1.0" | ||
"author": "Kristofer Joseph <[email protected]> (http://kristoferjoseph.com/)", | ||
"contributors": [ | ||
"Garth Braithwaite <[email protected]> (http://garthdb.com)" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/topcoat/topcoat/issues" | ||
}, | ||
"homepage": "http://topcoat.io", | ||
"dependencies": { | ||
"topcoat-utils": "~0.3.0" | ||
"topcoat-utils": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^6.5.3", | ||
"ava": "^0.17.0", | ||
"babel-cli": "^6.18.0", | ||
"babel-core": "^6.20.0", | ||
"babel-preset-es2015": "^6.18.0", | ||
"babel-register": "^6.18.0", | ||
"cz-customizable": "^4.0.0", | ||
"mocha": "^3.2.0", | ||
"resin": "^1.2.1", | ||
"semantic-release": "^6.3.2" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-customizable" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,18 @@ | ||
/** | ||
* | ||
* Copyright 2012 Adobe Systems Inc.; | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
@import "topcoat-utils"; | ||
|
||
%navigation-bar { | ||
extend: %reset-container; | ||
extend: %reset-base; | ||
extend: %reset-cursor; | ||
@extend: %reset-container; | ||
@extend: %reset-base; | ||
@extend: %reset-cursor; | ||
} | ||
|
||
%navigation-bar__item { | ||
extend: %reset-box-model; | ||
extend: %inline-block; | ||
extend: %reset-base; | ||
@extend: %reset-box-model; | ||
@extend: %inline-block; | ||
@extend: %reset-base; | ||
} | ||
|
||
%navigation-bar__title { | ||
extend: %reset-base; | ||
extend: %ellipsis; | ||
} | ||
@extend: %reset-base; | ||
@extend: %ellipsis; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.navigation-bar { | ||
@extend: %navigation-bar; | ||
} | ||
|
||
.navigation-bar__item { | ||
@extend: %navigation-bar__item; | ||
} | ||
|
||
.navigation-bar__title { | ||
@extend: %navigation-bar__title; | ||
} |
Oops, something went wrong.