Skip to content

Commit

Permalink
Merge pull request #623 from rebassjs/v4-minimal
Browse files Browse the repository at this point in the history
V4
  • Loading branch information
jxnblk authored Aug 4, 2019
2 parents a13c9d9 + f37b390 commit 60eddf9
Show file tree
Hide file tree
Showing 121 changed files with 22,102 additions and 51,751 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: yarn test
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
dist
build
.next
artifacts
.cache
public
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
dist
coverage
emotion/index.js
.cache
public
8 changes: 0 additions & 8 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
src
docs
test
coverage
examples
babel.config.js
emotion
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
now.json
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ language: node_js
node_js:
- 10
script:
- npm t -- --coverage
- yarn test --coverage
after_success:
- npm run cover
- yarn cover
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# The MIT License (MIT)
Copyright (c) 2015 – 2018 Brent Jackson
Copyright (c) 2015 – 2019 Brent Jackson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
132 changes: 0 additions & 132 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions README.md
18 changes: 3 additions & 15 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
module.exports = {
presets: [
[ '@babel/env', { loose: true } ],
'@babel/react'
],
env: {
emotion: {
plugins: [
[
'transform-rename-import', {
original: 'styled-components',
replacement: '@emotion/styled'
}
]
]
}
}
'@babel/preset-env',
'@babel/preset-react'
]
}
16 changes: 0 additions & 16 deletions docs/components.js

This file was deleted.

Loading

0 comments on commit 60eddf9

Please sign in to comment.