Skip to content

Commit

Permalink
Merge pull request #387 from blocknetdx/dev
Browse files Browse the repository at this point in the history
Merge dev to master
  • Loading branch information
tryiou authored Dec 7, 2023
2 parents a5c4751 + 9e711ce commit 77941c3
Show file tree
Hide file tree
Showing 321 changed files with 23,729 additions and 18,525 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 12
node-version: lts/hydrogen

- run: echo GIT_BRANCH="${{ github.ref_name }}" > electron-builder.env
- run: npm install --no-audit
Expand All @@ -38,6 +38,7 @@ jobs:
dist-native/*.tar.gz
dist-native/*.AppImage
dist-native/*.deb
dist-native/latest*.yml
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -49,6 +50,7 @@ jobs:
dist-native/*.tar.gz
dist-native/*.AppImage
dist-native/*.deb
dist-native/latest*.yml
build_mac:
runs-on: macos-11
Expand All @@ -58,7 +60,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 12
node-version: lts/hydrogen

- run: echo GIT_BRANCH="${{ github.ref_name }}" > electron-builder.env
- run: npm install --no-audit
Expand All @@ -71,6 +73,7 @@ jobs:
dist-native/*.dmg
dist-native/*.dmg.blockmap
dist-native/*.zip
dist-native/latest*.yml
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -82,6 +85,7 @@ jobs:
dist-native/*.dmg
dist-native/*.dmg.blockmap
dist-native/*.zip
dist-native/latest*.yml
build_win:
runs-on: windows-2019
Expand All @@ -91,7 +95,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 12
node-version: lts/hydrogen

- run: echo GIT_BRANCH="${{ github.ref_name }}" > electron-builder.env
- run: npm install --no-audit
Expand All @@ -104,6 +108,7 @@ jobs:
dist-native/*.exe
dist-native/*.exe.blockmap
dist-native/*.zip
dist-native/latest*.yml
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -115,3 +120,4 @@ jobs:
dist-native/*.exe
dist-native/*.exe.blockmap
dist-native/*.zip
dist-native/latest*.yml
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,5 @@ Thumbs.db
/docs
/docker-builds
/package-lock.json
.history/
.angular/
13 changes: 9 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@
],
"allowedCommonJsDependencies": [
"mathjs",
"rxjs"
"rxjs",
"typed-function",
"seed-random",
"javascript-natural-sort",
"complex.js",
"tiny-emitter",
"escape-latex",
"lodash/isBoolean"
]
},
"configurations": {
Expand All @@ -67,7 +74,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down Expand Up @@ -176,11 +182,10 @@
}
}
},
"defaultProject": "blocknet",
"schematics": {
"@schematics/angular:component": {
"prefix": "bn",
"styleext": "scss"
"style": "scss"
},
"@schematics/angular:directive": {
"prefix": "bn"
Expand Down
Loading

0 comments on commit 77941c3

Please sign in to comment.