Prepare to run upgrader
This commit is contained in:
parent
3b47ce3db5
commit
9f8d3bcc06
4 changed files with 1491 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -36,3 +36,5 @@
|
|||
|
||||
/app/assets/builds/*
|
||||
!/app/assets/builds/.keep
|
||||
|
||||
/node_modules
|
||||
|
|
|
@ -2,10 +2,10 @@ const defaultTheme = require('tailwindcss/defaultTheme')
|
|||
|
||||
module.exports = {
|
||||
content: [
|
||||
'./public/*.html',
|
||||
'./app/helpers/**/*.rb',
|
||||
'./app/javascript/**/*.js',
|
||||
'./app/views/**/*.{erb,haml,html,slim}'
|
||||
'../public/*.html',
|
||||
'../app/helpers/**/*.rb',
|
||||
'../app/javascript/**/*.js',
|
||||
'../app/views/**/*.{erb,haml,html,slim}'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
|
|
1475
package-lock.json
generated
Normal file
1475
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
Normal file
10
package.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"name": "app_name",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"tailwindcss": "^3.4.17",
|
||||
"@tailwindcss/aspect-ratio": "^0.4.2",
|
||||
"@tailwindcss/forms": "^0.5.10",
|
||||
"@tailwindcss/typography": "^0.5.16"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue