Skip to content

Commit

Permalink
feat: add support for updating multiple slack teams and slack apps
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This requires a completely new configuration format but
everything else should remain the same.

Closes #106
Closes #99
  • Loading branch information
JackCuthbert committed Jan 5, 2021
1 parent 2dc3b6a commit ffecd07
Show file tree
Hide file tree
Showing 28 changed files with 718 additions and 796 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ module.exports = {
extends: [
'standard-with-typescript',
'prettier',
'prettier/@typescript-eslint',
'prettier/react'
'prettier/@typescript-eslint'
],
plugins: ['prettier'],
rules: {
Expand All @@ -18,4 +17,3 @@ module.exports = {
}
}
}

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dist
.track.json
data/
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
trailingComma: 'none',
semi: false,
singleQuote: true,
arrowParens: 'avoid'
}
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ RUN npm install --production

FROM node:12-alpine
WORKDIR /app
RUN mkdir -p /app/data
RUN apk --no-cache update && \
apk --no-cache add tzdata
RUN rm -rf /var/cache/apk/*
Expand Down
Empty file added data/.gitkeep
Empty file.
Loading

0 comments on commit ffecd07

Please sign in to comment.