-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEVOPS-1160: remove bazel from dev-wallet (#343)
* feat: DEVOPS-1160 removed bazel from dev-wallet * feat: DEVOPS-1042 removing nucleus-server broken urls * feat: DEVOPS-1160 remove bazel from dev-wallet --------- Co-authored-by: Zilliqa GHA - Idb Updater <[email protected]>
- Loading branch information
Showing
80 changed files
with
14,480 additions
and
1,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Build folder and files # | ||
########################## | ||
build/ | ||
|
||
# Development folders and files # | ||
################################# | ||
.tmp/ | ||
dist/ | ||
node_modules/ | ||
*.compiled.* | ||
coverage | ||
public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"parser": "typescript", | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"arrowParens": "always", | ||
"overrides": [ | ||
{ | ||
"files": "*.css", | ||
"options": { | ||
"parser": "css" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM node:16 as build-stage | ||
|
||
WORKDIR /app | ||
COPY . ./ | ||
RUN yarn install | ||
RUN yarn ci | ||
RUN yarn build | ||
|
||
FROM nginx:stable-alpine as production-stage | ||
COPY --from=build-stage /app/build /usr/share/nginx/html | ||
EXPOSE 80 | ||
ENTRYPOINT ["nginx", "-g", "daemon off;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,6 @@ | ||
/* eslint-disable */ | ||
const webpack = require("webpack"); | ||
|
||
module.exports = function override(config) { | ||
config.resolve.fallback = { | ||
url: require.resolve("url"), | ||
assert: require.resolve("assert"), | ||
crypto: require.resolve("crypto-browserify"), | ||
http: require.resolve("stream-http"), | ||
https: require.resolve("https-browserify"), | ||
os: require.resolve("os-browserify/browser"), | ||
buffer: require.resolve("buffer"), | ||
stream: require.resolve("stream-browserify"), | ||
string_decoder: require.resolve("string_decoder"), | ||
events: require.resolve("events"), | ||
}; | ||
|
||
config.plugins.push( | ||
new webpack.ProvidePlugin({ | ||
process: "process/browser", | ||
}) | ||
); | ||
config.plugins.push( | ||
new webpack.ProvidePlugin({ | ||
Buffer: ["buffer", "Buffer"], | ||
}) | ||
); | ||
const WorkerPlugin = require('worker-plugin'); | ||
|
||
module.exports = function override(config, env) { | ||
config.plugins.push(new WorkerPlugin()); | ||
return config; | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.