Skip to content

Commit

Permalink
Merge pull request #11 from AntonBazhal/housekeeping
Browse files Browse the repository at this point in the history
Housekeeping
  • Loading branch information
AntonBazhal committed Feb 12, 2021
2 parents 06ac973 + 24938f7 commit ffd6c81
Show file tree
Hide file tree
Showing 7 changed files with 1,874 additions and 3,080 deletions.
10 changes: 4 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ references:

node_container: &node_container
docker:
- image: circleci/node:6
- image: circleci/node:10

attach_workspace: &attach_workspace
attach_workspace:
Expand All @@ -23,7 +23,7 @@ jobs:
<<: *node_container
steps:
- checkout
- run: npm install
- run: npm ci
- persist_to_workspace:
root: *workspace_root
paths:
Expand All @@ -34,15 +34,13 @@ jobs:
- checkout
- *attach_workspace
- run: npm run test
- run: sudo npm install -g coveralls
- run: cat ./coverage/lcov.info | coveralls
- run: cat ./coverage/lcov.info | npx coveralls
publish:
<<: *node_container
steps:
- checkout
- *attach_workspace
- run: sudo npm install -g publish
- run: publish
- run: npx publish

workflows:
version: 2
Expand Down
7 changes: 4 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ env:
es6: true

extends:
- "eslint:recommended"
- "airbnb-base"
- eslint:recommended
- airbnb-base

parserOptions:
sourceType: "scripts"
sourceType: script

rules:
arrow-parens: 0
comma-dangle: 0
class-methods-use-this: 0
prefer-destructuring: 0
strict: [2, "global"]
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10
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) 2018-2019 Anton Bazhal
Copyright (c) 2018-2021 Anton Bazhal

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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ functions:

The MIT License (MIT)

Copyright (c) 2018-2019 Anton Bazhal
Copyright (c) 2018-2021 Anton Bazhal

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
Loading

0 comments on commit ffd6c81

Please sign in to comment.