This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
extends: [ | |
'plugin:@typescript-eslint/recommended', | |
'plugin:prettier/recommended', | |
'prettier', | |
'prettier/@typescript-eslint', | |
], | |
parser: '@typescript-eslint/parser', | |
plugins: ['simple-import-sort', '@typescript-eslint', 'prettier'], | |
env: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Editor configuration, see https://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
end_of_line = auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import '@storybook/addon-actions/register'; | |
import "@storybook/addon-jest/register"; | |
import '@storybook/addon-viewport/register'; | |
import '@storybook/addon-a11y/register'; | |
import 'storybook-readme/register'; | |
import '@storybook/addon-knobs/register'; | |
import '@storybook/addon-backgrounds/register'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PURGING S3 BUCKET | |
aws s3 rm s3://llamabus.pe --recursive | |
#UPLOADING TO S3 | |
aws s3 sync ./packages/llamabus-front/public/ s3://llamabus.pe \ | |
--exclude "*" \ | |
--include "*.js" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \ | |
--include "*.html" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \ | |
--include "*.css" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \ | |
--include "*.svg" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \ | |
--include "*.json" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip |
OlderNewer