Skip to content

Commit

Permalink
Merge pull request #169 from mymonero/release-v3.0.3
Browse files Browse the repository at this point in the history
Release v3.0.3
  • Loading branch information
devinpearson authored Jul 2, 2024
2 parents ec7fb21 + 40aae84 commit 4098e19
Show file tree
Hide file tree
Showing 230 changed files with 7,141 additions and 10,824 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "3.0.0"
"version": "3.0.3"
}
9,866 changes: 5,979 additions & 3,887 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@mymonero/mymonero-bigint": "^3.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-lodash": "^3.3.4",
Expand All @@ -15,8 +16,10 @@
"moment": "^2.29.4",
"nyc": "^15.1.0",
"standard": "^12.0.1",
"axios": "^0.27.2",
"axios": "^1.6.8",
"axios-mock-adapter": "^1.22.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"mocha": "^9.2.2"
Expand Down
52 changes: 52 additions & 0 deletions packages/buildcheck.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#!/bin/bash

# Array of directories containing Node.js projects
directories=(
"mymonero-bigint"
"mymonero-nettype"
"mymonero-keyimage-cache"
"mymonero-app-bridge"
"mymonero-money-format"
"mymonero-cryptor"
"mymonero-web-components"
"mymonero-openalias"
"mymonero-page-templates"
"mymonero-monero-config"
"mymonero-libapp"
"mymonero-exchange"
"mymonero-locales"
"mymonero-tx-parsing-utils"
"mymonero-monero-client"
"mymonero-bridge-utils"
"mymonero-net-service-utils"
"mymonero-response-parser-utils"
"mymonero-hosted-api"
"changenow-exchange-integration"
"mymonero-lws-client"
"mymonero-paymentid-utils"
"mymonero-exchange-helper"
"mymonero-wallet-manager"
"mymonero-yat-lookup"
"mymonero-request-utils"
"mymonero-sendfunds-utils"
)

# Iterate through each directory
for dir in "${directories[@]}"
do
echo "Processing $dir"

# Change to the directory
cd "$dir" || { echo "Failed to enter directory $dir"; exit 0; }

# Run npm install if needed
npm install || { echo "npm install failed in $dir"; exit 1; }

# Run npm build
npm run build || { echo "npm build failed in $dir"; exit 1; }

# Return to the original directory
cd - > /dev/null
done

echo "Build process completed for all projects."
13 changes: 0 additions & 13 deletions packages/capacitor-file-picker/MymoneroCapacitorFilePicker.podspec

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.

This file was deleted.

Binary file not shown.
Empty file.
Binary file not shown.
116 changes: 0 additions & 116 deletions packages/capacitor-file-picker/android/.idea/codeStyles/Project.xml

This file was deleted.

6 changes: 0 additions & 6 deletions packages/capacitor-file-picker/android/.idea/compiler.xml

This file was deleted.

21 changes: 0 additions & 21 deletions packages/capacitor-file-picker/android/.idea/gradle.xml

This file was deleted.

30 changes: 0 additions & 30 deletions packages/capacitor-file-picker/android/.idea/jarRepositories.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 4098e19

Please sign in to comment.