create-warlock 4.0.30 → 4.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-warlock",
3
- "version": "4.0.30",
3
+ "version": "4.0.31",
4
4
  "main": "./esm/index.js",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,13 +27,13 @@
27
27
  "@mongez/reinforcements": "^2.3.12",
28
28
  "@mongez/localization": "^3.2.1",
29
29
  "@mongez/supportive-is": "^2.0.4",
30
- "@warlock.js/auth": "4.0.30",
31
- "@warlock.js/cache": "4.0.30",
32
- "@warlock.js/cascade": "4.0.30",
33
- "@warlock.js/scheduler": "4.0.30",
34
- "@warlock.js/core": "4.0.30",
35
- "@warlock.js/logger": "4.0.30",
36
- "@warlock.js/seal": "4.0.30",
30
+ "@warlock.js/auth": "4.0.31",
31
+ "@warlock.js/cache": "4.0.31",
32
+ "@warlock.js/cascade": "4.0.31",
33
+ "@warlock.js/scheduler": "4.0.31",
34
+ "@warlock.js/core": "4.0.31",
35
+ "@warlock.js/logger": "4.0.31",
36
+ "@warlock.js/seal": "4.0.31",
37
37
  "dayjs": "^1.11.13"
38
38
  },
39
39
  "devDependencies": {
@@ -1,22 +0,0 @@
1
- import { env } from "@mongez/dotenv";
2
-
3
- export type GoogleConfigurations = {
4
- apiKey: string;
5
- host: string;
6
- placeId: string;
7
- country?: string;
8
- };
9
-
10
- const googleConfigurations: GoogleConfigurations = {
11
- apiKey: env("GOOGLE_API_KEY", "api key"),
12
- host: env("GOOGLE_HOST", "google host"),
13
- placeId: env("GOOGLE_PLACE_ID", "place id"),
14
- };
15
-
16
- /**
17
- * GOOGLE_PLACE_ID=ChIJ80f_5nUNCjIRYWT3CfZFzio
18
- GOOGLE_API_KEY=AIzaSyANZrh4CD14F2qXbMhHPjohHmZDVoN4tHU
19
- GOOGLE_HOST=https://maps.googleapis.com/maps/api/place/details/json
20
- */
21
-
22
- export default googleConfigurations;