-
Notifications
You must be signed in to change notification settings - Fork 3
Update/migrate webpacker to js bundeling #1108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staging
Are you sure you want to change the base?
Changes from all commits
9095046
c47d506
391300e
126e986
bceb892
c75fe9e
b27ccc9
5b533ed
0d710d6
4e44d0c
71e6fd0
11df487
68d7a75
90b3a07
272eacb
8f603f7
548e00f
8d1eac3
c524ed8
d9e67fe
fea24e9
dabc815
b0cafbb
fbe619f
df29d77
7a5b9c9
79deaea
d8a48aa
0cd15a3
6b9f087
60366ad
9f3c275
27c656d
b1cf039
dfab8eb
5c58837
508c2af
ff085d7
572669d
8a42923
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| defaults | ||
| > 0.2% | ||
| not dead | ||
| not op_mini all |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "extends": [ | ||
| "stylelint-config-standard-scss", | ||
| "stylelint-config-recess-order" | ||
| ], | ||
| "rules": { | ||
| "selector-no-qualifying-type": [true, { | ||
| "ignore" : ["attribute", "class", "id"] | ||
| }] | ||
| }, | ||
| "overrides": [ | ||
| { | ||
| "files": ["**/*.vue"], | ||
| "customSyntax": "postcss-html" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| web: env RUBY_DEBUG_OPEN=true bin/rails server -b 0.0.0.0 | ||
| js: NODE_ENV=development yarn watch | ||
| css: yarn build:css --watch |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # Default to LF for most text files | ||
| * text=auto eol=lf | ||
|
Comment on lines
+1
to
+2
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainGood housekeeping—but verify file placement. Standardizing on LF line endings is a solid practice, especially for a cross-platform project undergoing significant JavaScript/frontend reorganization. However, Confirm that placing this in 🏁 Script executed: #!/bin/bash
# Check for existing .gitattributes at repository root
if [ -f ".gitattributes" ]; then
echo ".gitattributes exists at repository root:"
cat .gitattributes
else
echo "No .gitattributes found at repository root"
fiLength of output: 42 Length of output: 1276 Move The file is correctly configured but incorrectly placed. Scoped to Move 🤖 Prompt for AI Agents |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,2 @@ | ||
| //= link_tree ../images | ||
| //= link_directory ../javascripts .js | ||
| //= link_directory ../stylesheets .css | ||
| //= link_tree ../builds |
Uh oh!
There was an error while loading. Please reload this page.