Prepare to run upgrader

This commit is contained in:
Andrew Tomaka 2025-02-11 20:23:19 -05:00
parent 3b47ce3db5
commit 9f8d3bcc06
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
4 changed files with 1491 additions and 4 deletions

2
.gitignore vendored
View file

@ -36,3 +36,5 @@
/app/assets/builds/*
!/app/assets/builds/.keep
/node_modules

View file

@ -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

File diff suppressed because it is too large Load diff

10
package.json Normal file
View 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"
}
}