Commit 442f69e0 authored by RAHUL RATHORE's avatar RAHUL RATHORE
Browse files

fix: added package and used underscore js

parent db4372f2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ testem.log
Thumbs.db
/admin/website-angular/yarn-error.log

.env
*.lerna_backup

/packages/core/tsconfig.build.tsbuildinfo
+2 −0
Original line number Diff line number Diff line
@@ -143,6 +143,8 @@
		"tinymce": "^5.10.0",
		"tslib": "^2.3.1",
		"typeface-exo": "^1.1.13",
		"underscore": "^1.13.1",
		"underscore.string": "^3.3.5",
		"uuid": "^8.3.2",
		"web-animations-js": "^2.3.2",
		"zen-observable": "^0.8.15",
+2 −0
Original line number Diff line number Diff line
@@ -42,6 +42,8 @@
		"@ngx-translate/core": "^13.0.0",
		"@ngx-translate/http-loader": "^6.0.0",
		"tslib": "^2.3.1",
		"underscore": "^1.13.1",
		"underscore.string": "^3.3.5",
		"zone.js": "~0.11.4"
	},
	"devDependencies": {
+4 −1
Original line number Diff line number Diff line
@@ -15,5 +15,8 @@
			]
		}
	},
	"include": ["./src/**/*.ts", "../../common/**/*.ts"]
	"include": [
		"./src/**/*.d.ts",
		"../../common/**/*d.ts"
	]
}
+3 −1
Original line number Diff line number Diff line
@@ -32,7 +32,9 @@
		"reflect-metadata": "^0.1.13",
		"rxjs": "^7.4.0",
		"stripe": "^8.183.0",
		"typeorm": "^0.2.38"
		"typeorm": "^0.2.38",
		"underscore": "^1.13.1",
		"underscore.string": "^3.3.5"
	},
	"devDependencies": {
		"@types/node": "16.11.0",
Loading