Skip to content

Commit

Permalink
Merge pull request #30 from matheusps/chore/mono
Browse files Browse the repository at this point in the history
Chore/mono
  • Loading branch information
matheusps authored Jun 15, 2019
2 parents 18114c3 + 43e662b commit 540a673
Show file tree
Hide file tree
Showing 67 changed files with 5,390 additions and 2,059 deletions.
8 changes: 0 additions & 8 deletions .babelrc

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@ typings/
.next

#macos
.DS_Store
.DS_Store

#docs
.docz
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### React Quarks
### Darkside

[![CircleCI](https://circleci.com/gh/matheusps/react-quarks.svg?style=svg)](https://circleci.com/gh/matheusps/react-quarks)
[![codecov](https://codecov.io/gh/matheusps/react-quarks/branch/master/graph/badge.svg)](https://codecov.io/gh/matheusps/react-quarks)
Expand All @@ -10,8 +10,11 @@
# install dependencies
$ yarn

# start development server
$ yarn start
# start development server with docz
$ yarn dev

# Build styleguide
$ yarn build

# check your types
$ yarn check-types
Expand All @@ -22,9 +25,4 @@ $ yarn test
# Get test coverage
$ yarn test:coverage

# Run styleguide
$ yarn styleguide

# Build styleguide
$ yarn styleguide:build
```
10 changes: 10 additions & 0 deletions doczrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
title: 'Darkside',
files: '**/*.{md,markdown,mdx}',
wrapper: 'src/components/Theme',
themeConfig: {
mode: 'dark',
},
typescript: true,
plugins: [],
}
34 changes: 10 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,38 @@
{
"name": "react-quarks",
"name": "darkside",
"version": "0.0.1",
"description": "Elementary UI components",
"description": "React lib to create dark user interfaces",
"main": "index.js",
"repository": "https://github.com/matheusps/react-quarks.git",
"repository": "https://github.com/matheusps/darkside.git",
"author": "matheusps <matheus.ps@icloud.com>",
"license": "MIT",
"private": false,
"scripts": {
"check-types": "tsc",
"start": "webpack-dev-server --mode development",
"test": "jest",
"test:coverage": "yarn test --collectCoverage",
"codecov": "yarn test:coverage && codecov -f coverage/*.json",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
"dev": "docz dev",
"build": "docz build"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.0",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/styled-components": "^4.1.13",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"codecov": "^3.3.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"jest": "^24.7.1",
"jest-styled-components": "^6.3.1",
"react-docgen-typescript": "^1.12.3",
"react-styleguidist": "^9.0.5",
"react-testing-library": "^6.1.1",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
"typescript": "^3.4.1"
},
"dependencies": {
"lodash": "^4.17.11",
"@emotion/core": "^10.0.10",
"emotion-theming": "^10.0.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0"
Expand Down
7 changes: 0 additions & 7 deletions src/App.tsx

This file was deleted.

Loading

0 comments on commit 540a673

Please sign in to comment.