492eef0fd0
* remove staking page scss and invalid class for buttons * remove pending stake and staking form scss * make eith wallet buttons fill space * convert app banner and app footer to tailwind * remove low hanging fruit css * add spacing back to home page * fix spacings on various pages * remove custom text helpers and replace with tailwind * Loader component scss to tailwind * Locked progress scss to tailwind * Nav scss to tailwind. Cleaned up structure and removed 'bp3-dark' class from index.html * Page template scss to tailwind * Splash error scss to tailwind * Splash loader scss to tailwind * Token-input scss to tailwind * Stateful button scss to tailwind * Transaction button scss to tailwind * Transactions modal scss to tailwind * Modal scss to tailwind and improved structure * vega-wallet scss to tailwind * wallet-card (and child components in other files tweaked) scss to tailwind * Token details scss to tailwind * Home scss to tailwind * current-proposal-state scss to tailwind * current-proposal-status scss to tailwind * Tweak of modal scss to tailwind * vote-buttons scss to tailwind * vote-details scss to tailwind * vote-progress scss to tailwind * tranche-table scss to tailwind * vesting-table scss to tailwind * withdrawals scss to tailwind * removed reliance on colors.scss from styles.scss * convert tranche item scss * delete unused colors and fonts scss files * convert styles.scss to regular css * Tweak to token e2e tests to account for classname removal Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
81 lines
2.2 KiB
JSON
81 lines
2.2 KiB
JSON
{
|
|
"root": "apps/token",
|
|
"sourceRoot": "apps/token/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nrwl/web:webpack",
|
|
"outputs": ["{options.outputPath}"],
|
|
"defaultConfiguration": "production",
|
|
"options": {
|
|
"compiler": "babel",
|
|
"outputPath": "dist/apps/token",
|
|
"index": "apps/token/src/index.html",
|
|
"baseHref": "/",
|
|
"main": "apps/token/src/main.tsx",
|
|
"polyfills": "apps/token/src/polyfills.ts",
|
|
"tsConfig": "apps/token/tsconfig.app.json",
|
|
"assets": ["apps/token/src/favicon.ico", "apps/token/src/assets"],
|
|
"styles": ["apps/token/src/styles.css"],
|
|
"scripts": [],
|
|
"webpackConfig": "apps/explorer/webpack.config.js"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/token/src/environments/environment.ts",
|
|
"with": "apps/token/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"optimization": true,
|
|
"outputHashing": "all",
|
|
"sourceMap": true,
|
|
"namedChunks": false,
|
|
"extractLicenses": true,
|
|
"vendorChunk": false
|
|
}
|
|
}
|
|
},
|
|
"serve": {
|
|
"executor": "@nrwl/web:dev-server",
|
|
"options": {
|
|
"port": 4210,
|
|
"buildTarget": "token:build",
|
|
"hmr": true
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "token:build:production",
|
|
"hmr": false
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/token/**/*.{ts,tsx,js,jsx}"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/apps/token"],
|
|
"options": {
|
|
"jestConfig": "apps/token/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
},
|
|
"build-netlify": {
|
|
"builder": "@nrwl/workspace:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
"cp apps/token/netlify.toml netlify.toml",
|
|
"nx build token"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|