th: berry flavored yarn
parent
a2faa867a5
commit
236f063dd3
|
@ -1,22 +1,37 @@
|
||||||
|
.pnp.*
|
||||||
|
.yarn/*
|
||||||
|
!.yarn/patches
|
||||||
|
!.yarn/plugins
|
||||||
|
!.yarn/releases
|
||||||
|
!.yarn/sdks
|
||||||
|
!.yarn/versions
|
||||||
|
|
||||||
|
# Order-independent
|
||||||
|
*.sw*
|
||||||
|
*~
|
||||||
|
.DS_Store
|
||||||
.bundle
|
.bundle
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
.git
|
.git
|
||||||
.gitattributes
|
.gitattributes
|
||||||
.gitignore
|
|
||||||
.github
|
.github
|
||||||
public/system
|
.gitignore
|
||||||
public/assets
|
build
|
||||||
public/packs
|
chart
|
||||||
node_modules
|
coverage
|
||||||
|
data
|
||||||
|
elasticsearch
|
||||||
|
log
|
||||||
neo4j
|
neo4j
|
||||||
vendor/bundle
|
node_modules
|
||||||
.DS_Store
|
|
||||||
*.swp
|
|
||||||
*~
|
|
||||||
postgres
|
postgres
|
||||||
postgres14
|
postgres14
|
||||||
|
public/assets
|
||||||
|
public/packs
|
||||||
|
public/packs-test
|
||||||
|
public/system
|
||||||
redis
|
redis
|
||||||
elasticsearch
|
sorbet
|
||||||
chart
|
tmp
|
||||||
data
|
vendor/bundle
|
||||||
|
|
|
@ -69,3 +69,12 @@ yarn-debug.log
|
||||||
|
|
||||||
# Ignore Docker option files
|
# Ignore Docker option files
|
||||||
docker-compose.override.yml
|
docker-compose.override.yml
|
||||||
|
|
||||||
|
# Yarn Berry
|
||||||
|
.pnp.*
|
||||||
|
.yarn/*
|
||||||
|
!.yarn/patches
|
||||||
|
!.yarn/plugins
|
||||||
|
!.yarn/releases
|
||||||
|
!.yarn/sdks
|
||||||
|
!.yarn/versions
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,5 @@
|
||||||
|
enableGlobalCache: true
|
||||||
|
|
||||||
|
nodeLinker: node-modules
|
||||||
|
|
||||||
|
yarnPath: .yarn/releases/yarn-3.4.1.cjs
|
9
Rakefile
9
Rakefile
|
@ -4,3 +4,12 @@
|
||||||
require File.expand_path('../config/application', __FILE__)
|
require File.expand_path('../config/application', __FILE__)
|
||||||
|
|
||||||
Rails.application.load_tasks
|
Rails.application.load_tasks
|
||||||
|
|
||||||
|
# please don't do this
|
||||||
|
if Rake::Task.task_defined?('assets:precompile') && ENV.include?('RAKE_NO_YARN_INSTALL_HACK')
|
||||||
|
task = Rake::Task['assets:precompile']
|
||||||
|
puts task.prerequisites
|
||||||
|
task.prerequisites.delete('webpacker:yarn_install')
|
||||||
|
task.prerequisites.delete('yarn:install')
|
||||||
|
puts task.prerequisites
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue