Rename wallet-connect directory path

pull/3674/head
ioedeveloper 2 years ago committed by Aniket
parent f6345eff1d
commit df732444cc
  1. 2
      apps/remix-ide/project.json
  2. 30
      apps/wallet-connect/project.json
  3. 4
      tsconfig.paths.json

@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json", "$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/remix-ide/src", "sourceRoot": "apps/remix-ide/src",
"projectType": "application", "projectType": "application",
"implicitDependencies": ["doc-gen", "doc-viewer", "etherscan", "vyper", "wallet-connect"], "implicitDependencies": ["doc-gen", "doc-viewer", "etherscan", "vyper", "walletconnect"],
"targets": { "targets": {
"build": { "build": {
"executor": "@nrwl/webpack:webpack", "executor": "@nrwl/webpack:webpack",

@ -1,7 +1,7 @@
{ {
"name": "wallet-connect", "name": "walletconnect",
"$schema": "../../node_modules/nx/schemas/project-schema.json", "$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/wallet-connect/src", "sourceRoot": "apps/walletconnect/src",
"projectType": "application", "projectType": "application",
"implicitDependencies": [], "implicitDependencies": [],
"targets": { "targets": {
@ -11,16 +11,16 @@
"defaultConfiguration": "development", "defaultConfiguration": "development",
"options": { "options": {
"compiler": "babel", "compiler": "babel",
"outputPath": "dist/apps/wallet-connect", "outputPath": "dist/apps/walletconnect",
"index": "apps/wallet-connect/src/index.html", "index": "apps/walletconnect/src/index.html",
"baseHref": "./", "baseHref": "./",
"main": "apps/wallet-connect/src/main.tsx", "main": "apps/walletconnect/src/main.tsx",
"polyfills": "apps/wallet-connect/src/polyfills.ts", "polyfills": "apps/walletconnect/src/polyfills.ts",
"tsConfig": "apps/wallet-connect/tsconfig.app.json", "tsConfig": "apps/walletconnect/tsconfig.app.json",
"assets": ["apps/wallet-connect/src/profile.json"], "assets": ["apps/walletconnect/src/profile.json"],
"styles": ["apps/wallet-connect/src/css/app.css", "apps/wallet-connect/src/css/index.css"], "styles": ["apps/walletconnect/src/css/app.css", "apps/walletconnect/src/css/index.css"],
"scripts": [], "scripts": [],
"webpackConfig": "apps/wallet-connect/webpack.config.js" "webpackConfig": "apps/walletconnect/webpack.config.js"
}, },
"configurations": { "configurations": {
"development": { "development": {
@ -28,8 +28,8 @@
"production": { "production": {
"fileReplacements": [ "fileReplacements": [
{ {
"replace": "apps/wallet-connect/src/environments/environment.ts", "replace": "apps/walletconnect/src/environments/environment.ts",
"with": "apps/wallet-connect/src/environments/environment.prod.ts" "with": "apps/walletconnect/src/environments/environment.prod.ts"
} }
] ]
} }
@ -39,17 +39,17 @@
"executor": "@nrwl/webpack:dev-server", "executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development", "defaultConfiguration": "development",
"options": { "options": {
"buildTarget": "wallet-connect:build", "buildTarget": "walletconnect:build",
"hmr": true, "hmr": true,
"baseHref": "/" "baseHref": "/"
}, },
"configurations": { "configurations": {
"development": { "development": {
"buildTarget": "wallet-connect:build:development", "buildTarget": "walletconnect:build:development",
"port": 2023 "port": 2023
}, },
"production": { "production": {
"buildTarget": "wallet-connect:build:production" "buildTarget": "walletconnect:build:production"
} }
} }
} }

@ -151,8 +151,8 @@
"@remix-project/ghaction-helper": [ "@remix-project/ghaction-helper": [
"libs/ghaction-helper/src/index.ts" "libs/ghaction-helper/src/index.ts"
], ],
"@remixproject/wallet-connect-plugin": [ "@remixproject/walletconnect-plugin": [
"apps/wallet-connect/src/index.ts" "apps/walletconnect/src/index.ts"
], ],
} }
} }

Loading…
Cancel
Save