Skip to content

Commit

Permalink
Embeds best-scheduled-tweets lib into code (#55)
Browse files Browse the repository at this point in the history
* embedded best-scheduled-tweets lib into code, moved to standardJS

* snapshots cleanup

* Remove Babel, Webpack, Jest & move to ESM (#56)

* Removed babel and webpack and jest

* bumped aws version again
  • Loading branch information
lmammino authored Jun 19, 2023
1 parent e53d26c commit e86840f
Show file tree
Hide file tree
Showing 62 changed files with 14,978 additions and 37,154 deletions.
9 changes: 0 additions & 9 deletions .babelrc

This file was deleted.

4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
name: Deploy to GitHub and NPM
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
npm run build;
npm run release:tag && cd build && npm run release:deploy;
npm run release:tag
# npm run release:deploy; # commented out for now as this is disabled (no permission to deploy to AWS in CircleCI)
fi
15 changes: 15 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
env: {
es2021: true,
node: true
},
extends: 'standard',
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module'
},
rules: {
}
}
11 changes: 0 additions & 11 deletions .eslintrc.js

This file was deleted.

4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"jest.jestCommandLine": "node_modules/.bin/jest",
"testing.automaticallyOpenPeekView": "never"
}
Loading

0 comments on commit e86840f

Please sign in to comment.