Skip to content

Commit

Permalink
chore: Adjust Pod/Gradle message (#288)
Browse files Browse the repository at this point in the history
* chore: Rename Pod/Gradle message

* chore: Put flame infront
  • Loading branch information
mrousavy authored Nov 5, 2024
1 parent eb24f17 commit aae46cb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUILD_ERROR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ body:
> Configure project :react-native-nitro-modules
[NitroModules] Your app is boosted by nitro modules! 🔥
[NitroModules] 🔥 Your app is boosted by nitro modules!
...
validations:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ ${createFileMetadataString(`${name}+autolinking.gradle`)}
/// apply from: '../nitrogen/generated/android/${name}+autolinking.gradle'
/// \`\`\`
logger.warn("[NitroModules] 🔥 ${name} is boosted by nitro!")
android {
sourceSets {
main {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ${createFileMetadataString(`${name}+autolinking.rb`, '#')}
# \`\`\`
def add_nitrogen_files(spec)
Pod::UI.puts "[NitroModules] Adding ${name} specs..."
Pod::UI.puts "[NitroModules] 🔥 ${name} is boosted by nitro!"
spec.dependency "NitroModules"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
/// apply from: '../nitrogen/generated/android/NitroImage+autolinking.gradle'
/// ```

logger.warn("[NitroModules] 🔥 NitroImage is boosted by nitro!")

android {
sourceSets {
main {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# ```

def add_nitrogen_files(spec)
Pod::UI.puts "[NitroModules] Adding NitroImage specs..."
Pod::UI.puts "[NitroModules] 🔥 NitroImage is boosted by nitro!"

spec.dependency "NitroModules"

Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-nitro-modules/NitroModules.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require "json"

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::UI.puts "[NitroModules] Your app is boosted by nitro modules! 🔥"
Pod::UI.puts "[NitroModules] 🔥 Your app is boosted by nitro modules!"

Pod::Spec.new do |s|
s.name = "NitroModules"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-nitro-modules/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def getExtOrIntegerDefault(name) {
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["Nitro_" + name]).toInteger()
}

logger.warn("[NitroModules] Your app is boosted by nitro modules! 🔥")
logger.warn("[NitroModules] 🔥 Your app is boosted by nitro modules!")

android {
namespace "com.margelo.nitro"
Expand Down

0 comments on commit aae46cb

Please sign in to comment.