We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b36013 commit 402bd8fCopy full SHA for 402bd8f
package-scripts.yml
@@ -24,7 +24,11 @@ scripts:
24
# 2. Build the project but ignore TypeScript errors from missing devDependencies;
25
# 3. Check if the project is built now;
26
# 4. If it failed, print an error message (still follow https://docs.npmjs.com/cli/v8/using-npm/scripts#best-practices).
27
- script: npm run build
+ script: >
28
+ [ -f node_package/lib/ReactOnRails.js ] ||
29
+ (npm run build >/dev/null 2>&1 || true) &&
30
31
+ { echo 'Building react-on-rails seems to have failed!'; }
32
33
format:
34
default:
0 commit comments