Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Repo standardization #15

Merged
merged 1 commit into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ workflows:
jobs:
prep-deps:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- run:
Expand All @@ -37,7 +37,7 @@ jobs:

test-lint:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -48,7 +48,7 @@ jobs:

test-build-unit:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -59,7 +59,7 @@ jobs:

all-tests-pass:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- run:
name: All tests passed
Expand Down
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text=auto

yarn.lock linguist-generated=false
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10
v12
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "tsc --project .",
"test": "yarn build && node test/index.js",
Expand Down