Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 97fcc92

Browse files
Merge pull request #181 from ssuperczynski/v7
V7 support
2 parents 8c10ebb + eaebf95 commit 97fcc92

11 files changed

+2015
-1742
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: node_js
22
node_js:
33
- "8"
44
script:
5+
- npm audit
56
- npm run lint
67
- npm run build
78
- npm run cy:ci

angular.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@
4141
"replace": "src/environments/environment.ts",
4242
"with": "src/environments/environment.prod.ts"
4343
}
44-
]
44+
],
45+
"budgets": [{
46+
"type": "initial",
47+
"maximumWarning": "2mb",
48+
"maximumError": "3mb"
49+
}]
4550
}
4651
}
4752
},

ng-package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
3-
"src": "./",
43
"dest": "dist",
54
"workingDirectory": ".ng_build",
65
"lib": {
@@ -10,8 +9,6 @@
109
}
1110
},
1211
"whitelistedNonPeerDependencies": [
13-
"ngx-pagination",
14-
"@swimlane/dragula",
15-
"@swimlane/ngx-dnd"
12+
"ngx-pagination"
1613
]
1714
}

0 commit comments

Comments
 (0)