Skip to content

Commit

Permalink
feat(Build): switched to resin build process.
Browse files Browse the repository at this point in the history
  • Loading branch information
GarthDB committed Dec 11, 2016
1 parent 066195a commit baa7f7b
Show file tree
Hide file tree
Showing 53 changed files with 543 additions and 671 deletions.
20 changes: 20 additions & 0 deletions .cz-config.js
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']

};
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
.DS_Store
node_modules/
tmp/
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules
tmp
5 changes: 3 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
demo
test
test
docs
.*
8 changes: 3 additions & 5 deletions .travis.yml
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
94 changes: 0 additions & 94 deletions Gruntfile.js

This file was deleted.

35 changes: 13 additions & 22 deletions css/mobile-dark.css → css/mobile-dark-navigation-bar.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
/**
*
* 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.
*
*/@font-face {
@font-face {
font-family: "Source Sans Pro";
src: url('../font/SourceSansPro-Regular.otf');
}
Expand All @@ -31,14 +15,22 @@
font-weight: 600;
}

body {
font: 16px "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 400;
html {
font-size: 16px;
}

body {
margin: 0;
padding: 0;
font-family: "Source Sans Pro",
"HelveticaNeue-Light",
"Helvetica Neue Light",
"Helvetica Neue",
Helvetica,
Arial,
"Lucida Grande",
sans-serif;
font-weight: 400;
background: hsla(200, 2%, 30%, 1);
}

Expand Down Expand Up @@ -68,7 +60,6 @@ body {

.topcoat-navigation-bar,
.topcoat-navigation-bar__item {
-moz-box-sizing: border-box;
box-sizing: border-box;
background-clip: padding-box;
}
Expand Down Expand Up @@ -130,4 +121,4 @@ body {
font-size: 1.3rem;
font-weight: 400;
color: hsla(0, 100%, 100%, 1);
}
}
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
/**
*
* 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.
*
*/@font-face {
@font-face {
font-family: "Source Sans Pro";
src: url('../font/SourceSansPro-Regular.otf');
}
Expand All @@ -31,14 +15,22 @@
font-weight: 600;
}

body {
font: 16px "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 400;
html {
font-size: 16px;
}

body {
margin: 0;
padding: 0;
font-family: "Source Sans Pro",
"HelveticaNeue-Light",
"Helvetica Neue Light",
"Helvetica Neue",
Helvetica,
Arial,
"Lucida Grande",
sans-serif;
font-weight: 400;
background: hsla(180, 5%, 88%, 1);
}

Expand Down Expand Up @@ -68,7 +60,6 @@ body {

.topcoat-navigation-bar,
.topcoat-navigation-bar__item {
-moz-box-sizing: border-box;
box-sizing: border-box;
background-clip: padding-box;
}
Expand Down Expand Up @@ -130,4 +121,4 @@ body {
font-size: 1.3rem;
font-weight: 400;
color: hsla(0, 0%, 27%, 1);
}
}
11 changes: 0 additions & 11 deletions demo/iframe.jade

This file was deleted.

76 changes: 0 additions & 76 deletions demo/index.html

This file was deleted.

76 changes: 0 additions & 76 deletions demo/mobile-light.html

This file was deleted.

97 changes: 0 additions & 97 deletions demo/topcoat-navigation-bar-mobile-light.html

This file was deleted.

File renamed without changes.
Loading

0 comments on commit baa7f7b

Please sign in to comment.