|
1 | 1 | { |
2 | 2 | "name": "@sentry/angular", |
3 | | - "version": "6.10.0", |
| 3 | + "version": "6.13.3", |
4 | 4 | "description": "Official Sentry SDK for Angular", |
5 | 5 | "repository": "git://github.com/getsentry/sentry-javascript.git", |
6 | 6 | "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular", |
|
21 | 21 | "@angular/router": "10.x || 11.x || 12.x" |
22 | 22 | }, |
23 | 23 | "dependencies": { |
24 | | - "@sentry/browser": "6.10.0", |
25 | | - "@sentry/types": "6.10.0", |
26 | | - "@sentry/utils": "6.10.0", |
| 24 | + "@sentry/browser": "6.13.3", |
| 25 | + "@sentry/types": "6.13.3", |
| 26 | + "@sentry/utils": "6.13.3", |
27 | 27 | "rxjs": "^6.6.0", |
28 | 28 | "tslib": "^1.9.3" |
29 | 29 | }, |
30 | 30 | "devDependencies": { |
31 | 31 | "@angular/common": "^10.0.3", |
32 | 32 | "@angular/core": "^10.0.3", |
33 | 33 | "@angular/router": "^10.0.3", |
34 | | - "@sentry-internal/eslint-config-sdk": "6.10.0", |
| 34 | + "@sentry-internal/eslint-config-sdk": "6.13.3", |
35 | 35 | "npm-run-all": "^4.1.2", |
36 | 36 | "prettier": "1.19.0", |
37 | 37 | "rimraf": "^2.6.3", |
38 | 38 | "typescript": "3.7.5" |
39 | 39 | }, |
40 | 40 | "scripts": { |
41 | 41 | "build": "run-p build:es5 build:esm", |
| 42 | + "build:dev": "run-s build", |
42 | 43 | "build:es5": "tsc -p tsconfig.build.json", |
43 | 44 | "build:esm": "tsc -p tsconfig.esm.json", |
44 | | - "build:watch": "run-p build:watch:es5 build:watch:esm", |
45 | | - "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", |
46 | | - "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", |
| 45 | + "build:watch": "run-p build:es5:watch build:esm:watch", |
| 46 | + "build:dev:watch": "run-s build:watch", |
| 47 | + "build:es5:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput", |
| 48 | + "build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", |
| 49 | + "circularDepCheck": "madge --circular src/index.ts", |
47 | 50 | "clean": "rimraf dist esm build coverage", |
| 51 | + "fix": "run-s fix:eslint fix:prettier", |
| 52 | + "fix:eslint": "eslint . --format stylish --fix", |
| 53 | + "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"", |
48 | 54 | "link:yarn": "yarn link", |
49 | 55 | "lint": "run-s lint:prettier lint:eslint", |
50 | | - "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", |
51 | 56 | "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish", |
52 | | - "fix": "run-s fix:eslint fix:prettier", |
53 | | - "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"", |
54 | | - "fix:eslint": "eslint . --format stylish --fix", |
55 | | - "pack": "npm pack", |
56 | | - "circularDepCheck": "madge --circular src/index.ts" |
| 57 | + "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", |
| 58 | + "pack": "npm pack" |
57 | 59 | }, |
58 | 60 | "volta": { |
59 | 61 | "extends": "../../package.json" |
|
0 commit comments