Skip to content

Commit 0369712

Browse files
Merge pull request #247 from cloudinary/lockfile-regeneration
chore: regenerated lockfiles; locked lerna to `npm ci`; lint fixes
2 parents dae5e1f + 0da93b3 commit 0369712

26 files changed

+142880
-124026
lines changed

.github/workflows/pr-validate.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
- name: Installing dependencies
3030
run: npm ci
3131

32+
# necessary due to the package.json/main setup
33+
- name: Running build
34+
run: npm run build
35+
3236
- name: Running tests
3337
run: npm run test
3438

package-lock.json

Lines changed: 4170 additions & 2728 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,23 @@
66
},
77
"scripts": {
88
"postinstall": "husky install",
9-
"install": "lerna bootstrap",
9+
"install": "lerna bootstrap --ci --hoist @cloudinary/url-gen",
1010
"build": "lerna run build",
1111
"quickstart": "lerna bootstrap && lerna run build",
1212
"test": "lerna run test",
13+
"lint": "lerna run lint",
14+
"typecheck": "lerna run typecheck",
1315
"build:docs": "node ./scripts/buildDocs.js",
1416
"start:docs": "live-server --open=public/docs",
1517
"update:urlgen": "npm install @cloudinary/url-gen@latest --prefix packages/html && npm install @cloudinary/url-gen@latest --prefix packages/react && npm install @cloudinary/url-gen@latest --prefix packages/vue && npm install @cloudinary/url-gen@latest --prefix packages/angular && npm install @cloudinary/url-gen@latest --prefix packages/angular/projects/cloudinary-library"
1618
},
1719
"devDependencies": {
20+
"@cloudinary/url-gen": "^1.21.0",
1821
"@commitlint/cli": "^17.6.1",
1922
"@commitlint/config-conventional": "^17.6.1",
2023
"@vue/compiler-sfc": "^3.2.47",
2124
"better-docs": "2.3.2",
25+
"core-js": "^3.39.0",
2226
"foodoc": "0.0.9",
2327
"husky": "^8.0.3",
2428
"jsdoc": "3.6.4",

packages/angular/angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"build": {
1313
"builder": "@angular-devkit/build-angular:ng-packagr",
1414
"options": {
15-
"tsConfig": "projects/cloudinary-library/tsconfig.lib.json",
15+
"tsConfig": "projects/cloudinary-library/tsconfig.lib.prod.json",
1616
"project": "projects/cloudinary-library/ng-package.json"
1717
},
1818
"configurations": {
@@ -33,7 +33,7 @@
3333
"builder": "@angular-devkit/build-angular:tslint",
3434
"options": {
3535
"tsConfig": [
36-
"projects/cloudinary-library/tsconfig.lib.json",
36+
"projects/cloudinary-library/tsconfig.lib.prod.json",
3737
"projects/cloudinary-library/tsconfig.spec.json"
3838
],
3939
"exclude": [

0 commit comments

Comments
 (0)