Skip to content

Commit

Permalink
Set a specific version of throughs2 to avoid this issue: NativeScript…
Browse files Browse the repository at this point in the history
  • Loading branch information
Omakase JS committed Jan 2, 2019
1 parent acd40f3 commit ccddab8
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 1,158 deletions.
28 changes: 6 additions & 22 deletions .circleci/config.yml
Expand Up @@ -19,34 +19,18 @@ jobs:
paths:
- ~/.cache/yarn

- run:
name: Lint
command: yarn lint

- run:
name: Build
command: yarn build

- run:
name: Test
command: yarn jest
- run: yarn lint
- run: yarn build
- run: yarn jest

deploy:
docker:
- image: circleci/node
steps:
- checkout
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile

- run:
name: Setting up NPM
command: 'echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc'

- run:
name: Deploy
command: yarn release
- run: yarn install --frozen-lockfile
- run: 'echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc'
- run: yarn release

workflows:
version: 2
Expand Down
9 changes: 4 additions & 5 deletions lerna.json
@@ -1,8 +1,7 @@
{
"packages": [
"packages/*"
],
"npmClient": "yarn",
"packages": ["packages/*"],
"useWorkspaces": true,
"version": "0.0.0"
"version": "0.0.2",
"npmClient": "yarn",
"npmClientArgs": ["--no-lockfile"]
}
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -19,6 +19,9 @@
"type": "git",
"url": "https://github.com/omakase-js/omakase/"
},
"resolutions": {
"through2": "2.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
Expand All @@ -29,7 +32,6 @@
"lerna": "^3.8.1",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3",
"release-it": "^7.6.1",
"ts-jest": "^23.10.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
Expand Down

0 comments on commit ccddab8

Please sign in to comment.