* Migrate to esbuild WIP * Add exclude * Remove redundant file * Move file * Move to javascript_include_tag * Lint fix * WIP * WIP * Add watch mode to esbuild WIP * Get jest working * Remove babel * Revert "Remove babel" This reverts commit 6da35260aa19d6f97f586deb66c0ecaf48433b73. * More WIP * Got image to load * WIP * Resolve audit * Lint fix * WIP * Fix jest spec * [CI] Remove asset-restore for test build stage * Production compliant * Temp disable sourcemap * Update glob * Add esbuild helper to stimulus * Import fragment * Temp disable coverage to see failing tests * Fix broken spec * Address lint * Set proper es6 target * Use esbuild for everything * wait what * Revert "Set proper es6 target" This reverts commit 98f5278093421baa8ffe2ca580845b01c1a1eadf. * Revert "Use esbuild for everything" This reverts commit 0ac46738f07ffcb6af095ccb1ffa5e439b7fefa3. * Replace uglifier with terser * New compiled assets version * Remvoe honeybadger-io/webpack * Remove cypress coverage checks for now * Update jsconfig.json * Update docker-compose * Remove public/packs-test from ci cache
119 lines
1.8 KiB
Text
119 lines
1.8 KiB
Text
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile '~/.gitignore_global'
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
vendor/bundle
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
!/log/.keep
|
|
/tmp
|
|
.DS_Store
|
|
.swp
|
|
.approvals
|
|
.torus.json
|
|
coverage
|
|
.nyc_output
|
|
/tags
|
|
|
|
# Ignore public uploads
|
|
/public/uploads/*
|
|
/public/c/*
|
|
/public/i/*
|
|
/public/assets/*
|
|
|
|
# Ignore node_modules
|
|
node_modules/
|
|
|
|
# Generated js bundles
|
|
/app/assets/javascripts/generated/*
|
|
latest.dump
|
|
.byebug_history
|
|
|
|
# Ignore application configuration
|
|
/config/application.yml
|
|
/config/application_unused.yml
|
|
/public/packs
|
|
/public/packs-test
|
|
/node_modules
|
|
yarn-debug.log*
|
|
.yarn-integrity
|
|
.env.test.local
|
|
.env.development*
|
|
.env
|
|
|
|
# Ignore storybook static site generation
|
|
app/javascript/storybook-static/
|
|
yarn-error.log
|
|
|
|
# Ignore package-lock.json because we use yarn
|
|
package-lock.json
|
|
|
|
#Jetbrains Tools
|
|
.idea/
|
|
|
|
#Nova from Panic
|
|
.nova/
|
|
|
|
#sitemap
|
|
/public/sitemap.xml.gz
|
|
/public/sitemaps/
|
|
|
|
# Development Docker storage location
|
|
_docker-storage/
|
|
|
|
# AWS Cloud9 specific folder for user settings
|
|
.c9/
|
|
|
|
# rvm
|
|
.ruby-gemset
|
|
|
|
# rbenv
|
|
.rbenv-vars
|
|
|
|
# asdf
|
|
.tool-versions
|
|
|
|
# Container volumes
|
|
db_data
|
|
es_data
|
|
gem_cache
|
|
|
|
# Compose generated files
|
|
bundle_finished
|
|
|
|
# Auto-generated Storybook stories
|
|
app/javascript/generated_stories/
|
|
|
|
# Cypress test run artifacts
|
|
cypress/videos
|
|
cypress/screenshots
|
|
cypress/logs
|
|
cypress/results
|
|
|
|
# PostCSS error log
|
|
postcss_error.log
|
|
|
|
# ripgrep ignore file
|
|
.rgignore
|
|
config/definitions.rb
|
|
|
|
# ignore redis backup
|
|
dump.rdb
|
|
|
|
# pry configuration file
|
|
.pryrc
|
|
|
|
# generated yarddoc
|
|
doc/
|
|
|
|
# spec reports
|
|
/spec/reports
|
|
/junit.xml
|
|
|
|
/app/assets/builds/*
|
|
!/app/assets/builds/.keep
|