Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3d8fc6b
initial edits
coreylight Dec 5, 2017
e904189
some tweaks
coreylight Dec 8, 2017
da843d1
add eslint-airbnb-base
coreylight Dec 8, 2017
7076053
use iopipe eslint
coreylight Dec 11, 2017
553518e
1.0.7
coreylight Dec 11, 2017
6a9be1a
use prettier in eslint
coreylight Dec 11, 2017
c177bb7
1.0.8
coreylight Dec 11, 2017
16b8ca4
validate
coreylight Dec 11, 2017
9d3a8c8
1.0.9
coreylight Dec 11, 2017
dd81869
comment for eslint ignore
coreylight Dec 11, 2017
018d086
ci setup
coreylight Dec 11, 2017
917e981
some upgrades, comment out babel-plugin-module resolver aliasing for …
coreylight Dec 12, 2017
1fdcd95
upgrade lint
coreylight Dec 12, 2017
b686721
1.0.10
coreylight Dec 12, 2017
58f9580
Use node 6 for dev
coreylight Dec 12, 2017
23bce97
use node 6, format
coreylight Dec 12, 2017
02f34e0
Merge pull request #1 from iopipe/tweaks
coreylight Dec 12, 2017
8b23760
1.1.0
coreylight Dec 12, 2017
3c68df5
Merge pull request #2 from iopipe/versioning
coreylight Dec 12, 2017
fe0c11a
add async transform
coreylight Dec 12, 2017
7da133d
1.1.1
coreylight Dec 12, 2017
3a69e33
Merge pull request #3 from iopipe/tweaks
coreylight Dec 12, 2017
67b5418
feat(release): Write release script
coreylight Dec 21, 2017
28b2d36
Merge pull request #4 from coreylight/release
pselle Dec 21, 2017
6a78550
feat(commit script): add commit script that utilizes commitizen
coreylight Dec 21, 2017
2e6d049
docs(package.json): add scripts keyword
coreylight Dec 21, 2017
1ee3b2d
fix(package.json): remove extraneous test commands
coreylight Dec 21, 2017
9c24d04
Merge pull request #5 from coreylight/commit-script
pselle Dec 21, 2017
4a96fc3
feat(browser build option): use $BUILD_BROWSER to employ browser-base…
coreylight Dec 22, 2017
5787d4d
Merge pull request #6 from coreylight/add-babel-browser-opt
pselle Dec 22, 2017
5850425
docs(readme): change some language in readme, add example link
coreylight Feb 15, 2018
97f7286
Merge pull request #7 from coreylight/docs
pselle Feb 15, 2018
d8bb128
fix(babel.rc): bump supported browsers to those that have generator f…
coreylight Feb 21, 2018
55338f6
Merge pull request #9 from coreylight/fix-8
coreylight Feb 21, 2018
d1b1617
fixes #11
coreylight Aug 14, 2018
a7aef98
fix #10, circle 2 config
coreylight Aug 14, 2018
6d688f4
update node version in ci
coreylight Aug 14, 2018
caef234
Merge pull request #12 from coreylight/fix-11
pselle Aug 14, 2018
72bfa1f
merge master
coreylight Aug 15, 2018
2783d51
Merge pull request #13 from coreylight/fix-10
pselle Sep 14, 2018
21356f7
ci(Circle): npm deploy scheme
Sep 14, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions .all-contributorsrc

This file was deleted.

58 changes: 58 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
defaults: &defaults
docker:
- image: iopipe/circleci
working_directory: ~/circleci-deployment

version: 2

jobs:
install:
<<: *defaults
steps:
- checkout
- restore_cache:
key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run: yarn
- save_cache:
paths:
- node_modules
key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}

test:
<<: *defaults
steps:
- checkout
- restore_cache:
key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run: yarn run validate
- save_cache:
key: v1-dist-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
paths:
- dist

deploy:
<<: *defaults
steps:
- checkout
- restore_cache:
key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
- restore_cache:
key: v1-dist-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- run: yarn run release

workflows:
version: 2
test_build_deploy:
jobs:
- install
- test:
requires:
- install
- deploy:
requires:
- install
- test
filters:
branches:
only:
- master
43 changes: 0 additions & 43 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

35 changes: 0 additions & 35 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,3 @@ dist
.opt-out
.DS_Store
.eslintcache

# these cause more harm than good
# when working with contributors
package-lock.json
yarn.lock
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coverage
src
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

91 changes: 0 additions & 91 deletions CONTRIBUTING.md

This file was deleted.

Loading