|
| 1 | +{ |
| 2 | + "name": "hot-wallet", |
| 3 | + "$schema": "../../node_modules/nx/schemas/project-schema.json", |
| 4 | + "sourceRoot": "packages/hot-wallet/src", |
| 5 | + "projectType": "library", |
| 6 | + "targets": { |
| 7 | + "build": { |
| 8 | + "executor": "@nrwl/rollup:rollup", |
| 9 | + "outputs": ["{options.outputPath}"], |
| 10 | + "options": { |
| 11 | + "outputPath": "dist/packages/hot-wallet", |
| 12 | + "tsConfig": "packages/hot-wallet/tsconfig.lib.json", |
| 13 | + "project": "packages/hot-wallet/package.json", |
| 14 | + "entryFile": "packages/hot-wallet/src/index.ts", |
| 15 | + "buildableProjectDepsInPackageJsonType": "dependencies", |
| 16 | + "compiler": "babel", |
| 17 | + "format": ["esm", "cjs"], |
| 18 | + "assets": [ |
| 19 | + { |
| 20 | + "glob": "packages/hot-wallet/README.md", |
| 21 | + "input": ".", |
| 22 | + "output": "." |
| 23 | + }, |
| 24 | + { |
| 25 | + "glob": "packages/hot-wallet/assets/*", |
| 26 | + "input": ".", |
| 27 | + "output": "assets" |
| 28 | + } |
| 29 | + ] |
| 30 | + } |
| 31 | + }, |
| 32 | + "lint": { |
| 33 | + "executor": "@nx/linter:eslint", |
| 34 | + "outputs": ["{options.outputFile}"], |
| 35 | + "options": { |
| 36 | + "lintFilePatterns": ["packages/hot-wallet/**/*.ts"] |
| 37 | + } |
| 38 | + }, |
| 39 | + "test": { |
| 40 | + "executor": "@nx/jest:jest", |
| 41 | + "outputs": ["{workspaceRoot}/coverage/packages/hot-wallet"], |
| 42 | + "options": { |
| 43 | + "jestConfig": "packages/hot-wallet/jest.config.ts", |
| 44 | + "passWithNoTests": true |
| 45 | + } |
| 46 | + }, |
| 47 | + "deploy": { |
| 48 | + "executor": "ngx-deploy-npm:deploy", |
| 49 | + "options": { |
| 50 | + "access": "public" |
| 51 | + }, |
| 52 | + "dependsOn": ["^deploy"] |
| 53 | + } |
| 54 | + }, |
| 55 | + "tags": ["browser-wallet"] |
| 56 | +} |
0 commit comments