Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalina committed Sep 7, 2018
1 parent 4974bfe commit b66b0e9
Show file tree
Hide file tree
Showing 20 changed files with 1,207 additions and 181 deletions.
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10.10.0
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10.10.0
15 changes: 15 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always", {
"ignore": ["stylelint-commands", "between-comments"]
}
],
"declaration-colon-space-after": "always",
"indentation": 2,
"max-empty-lines": 2,
"unit-whitelist": ["em", "rem", "%", "px", "s", "ms", "vw", "vh", "deg"]
}
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.tabSize": 2,
"typescript.tsdk": "node_modules/typescript/lib"
}
4 changes: 2 additions & 2 deletions e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AppPage } from './app.po';

describe('workspace-project App', () => {
describe('App', () => {
let page: AppPage;

beforeEach(() => {
Expand All @@ -9,6 +9,6 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to flosports-component-library!');
expect(page.getParagraphText()).toEqual('FloSports Component Library');
});
});
Loading

0 comments on commit b66b0e9

Please sign in to comment.