Skip to content

Commit

Permalink
feat: migration to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
@jotadeveloper authored and sergiohgz committed Jul 24, 2019
1 parent 9cd9dbf commit 748ca92
Show file tree
Hide file tree
Showing 12 changed files with 4,872 additions and 2,540 deletions.
13 changes: 1 addition & 12 deletions core/streams/.babelrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
{
"presets": [["env", {
"targets": {
"node": "6"
}
}], "flow"],
"env": {
"test": {
"plugins": [
"transform-async-to-generator"
]
}
}
"presets": [["@verdaccio", {"typescript": true}]]
}
60 changes: 60 additions & 0 deletions core/streams/.circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
version: 2
jobs:
lint:
docker:
- image: circleci/node:10
steps:
- checkout
- run: yarn install --no-progress --registry https://registry.verdaccio.org --no-lockfile
- run: yarn lint
- run: yarn build

test_11:
docker:
- image: circleci/node:11
steps:
- checkout
- run: yarn install --no-progress
- run: yarn test

test_10:
docker:
- image: circleci/node:10
steps:
- checkout
- run: yarn install --no-progress
- run: yarn test

test_8:
docker:
- image: circleci/node:8
steps:
- checkout
- run: yarn install --no-progress
- run: yarn test

test_9:
docker:
- image: circleci/node:9
steps:
- checkout
- run: yarn install --no-progress
- run: yarn test

workflows:
version: 2
build_and_test:
jobs:
- lint
- test_11:
requires:
- lint
- test_10:
requires:
- lint
- test_8:
requires:
- lint
- test_9:
requires:
- lint
23 changes: 0 additions & 23 deletions core/streams/.flowconfig

This file was deleted.

2 changes: 1 addition & 1 deletion core/streams/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Verdaccio Team
Copyright (c) 2019 Verdaccio Team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
30 changes: 0 additions & 30 deletions core/streams/circle.yml

This file was deleted.

Loading

0 comments on commit 748ca92

Please sign in to comment.