@saasmakers/shared 0.1.2 → 0.1.4
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/dist/index.cjs +14 -0
- package/dist/index.d.cts +9 -11
- package/dist/index.d.mts +9 -11
- package/dist/index.d.ts +9 -11
- package/dist/index.mjs +13 -1
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -28000,4 +28000,18 @@ const emojis = [
|
|
|
28000
28000
|
}
|
|
28001
28001
|
];
|
|
28002
28002
|
|
|
28003
|
+
const environments = [
|
|
28004
|
+
"development",
|
|
28005
|
+
"production",
|
|
28006
|
+
"test"
|
|
28007
|
+
];
|
|
28008
|
+
const logLevels = [
|
|
28009
|
+
"debug",
|
|
28010
|
+
"info",
|
|
28011
|
+
"warn",
|
|
28012
|
+
"error"
|
|
28013
|
+
];
|
|
28014
|
+
|
|
28003
28015
|
exports.emojis = emojis;
|
|
28016
|
+
exports.environments = environments;
|
|
28017
|
+
exports.logLevels = logLevels;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
interface Emoji$1 {
|
|
2
|
-
id: string
|
|
3
|
-
keywords: Record<Locale, [string, ...string[]]>
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare const emojis: {
|
|
7
|
-
category: string;
|
|
8
|
-
emojis: Emoji$1[];
|
|
9
|
-
}[];
|
|
10
|
-
|
|
11
1
|
type Environment = 'development' | 'production' | 'test'
|
|
12
2
|
|
|
13
3
|
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
@@ -17,5 +7,13 @@ interface Emoji {
|
|
|
17
7
|
keywords: Record<Locale, [string, ...string[]]>
|
|
18
8
|
}
|
|
19
9
|
|
|
20
|
-
|
|
10
|
+
declare const emojis: {
|
|
11
|
+
category: string;
|
|
12
|
+
emojis: Emoji[];
|
|
13
|
+
}[];
|
|
14
|
+
|
|
15
|
+
declare const environments: Environment[];
|
|
16
|
+
declare const logLevels: LogLevel[];
|
|
17
|
+
|
|
18
|
+
export { emojis, environments, logLevels };
|
|
21
19
|
export type { Emoji, Environment, LogLevel };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
interface Emoji$1 {
|
|
2
|
-
id: string
|
|
3
|
-
keywords: Record<Locale, [string, ...string[]]>
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare const emojis: {
|
|
7
|
-
category: string;
|
|
8
|
-
emojis: Emoji$1[];
|
|
9
|
-
}[];
|
|
10
|
-
|
|
11
1
|
type Environment = 'development' | 'production' | 'test'
|
|
12
2
|
|
|
13
3
|
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
@@ -17,5 +7,13 @@ interface Emoji {
|
|
|
17
7
|
keywords: Record<Locale, [string, ...string[]]>
|
|
18
8
|
}
|
|
19
9
|
|
|
20
|
-
|
|
10
|
+
declare const emojis: {
|
|
11
|
+
category: string;
|
|
12
|
+
emojis: Emoji[];
|
|
13
|
+
}[];
|
|
14
|
+
|
|
15
|
+
declare const environments: Environment[];
|
|
16
|
+
declare const logLevels: LogLevel[];
|
|
17
|
+
|
|
18
|
+
export { emojis, environments, logLevels };
|
|
21
19
|
export type { Emoji, Environment, LogLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
interface Emoji$1 {
|
|
2
|
-
id: string
|
|
3
|
-
keywords: Record<Locale, [string, ...string[]]>
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare const emojis: {
|
|
7
|
-
category: string;
|
|
8
|
-
emojis: Emoji$1[];
|
|
9
|
-
}[];
|
|
10
|
-
|
|
11
1
|
type Environment = 'development' | 'production' | 'test'
|
|
12
2
|
|
|
13
3
|
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
@@ -17,5 +7,13 @@ interface Emoji {
|
|
|
17
7
|
keywords: Record<Locale, [string, ...string[]]>
|
|
18
8
|
}
|
|
19
9
|
|
|
20
|
-
|
|
10
|
+
declare const emojis: {
|
|
11
|
+
category: string;
|
|
12
|
+
emojis: Emoji[];
|
|
13
|
+
}[];
|
|
14
|
+
|
|
15
|
+
declare const environments: Environment[];
|
|
16
|
+
declare const logLevels: LogLevel[];
|
|
17
|
+
|
|
18
|
+
export { emojis, environments, logLevels };
|
|
21
19
|
export type { Emoji, Environment, LogLevel };
|
package/dist/index.mjs
CHANGED
|
@@ -27998,4 +27998,16 @@ const emojis = [
|
|
|
27998
27998
|
}
|
|
27999
27999
|
];
|
|
28000
28000
|
|
|
28001
|
-
|
|
28001
|
+
const environments = [
|
|
28002
|
+
"development",
|
|
28003
|
+
"production",
|
|
28004
|
+
"test"
|
|
28005
|
+
];
|
|
28006
|
+
const logLevels = [
|
|
28007
|
+
"debug",
|
|
28008
|
+
"info",
|
|
28009
|
+
"warn",
|
|
28010
|
+
"error"
|
|
28011
|
+
];
|
|
28012
|
+
|
|
28013
|
+
export { emojis, environments, logLevels };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/shared",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Shared data and types for SaaS Makers projects",
|
|
7
7
|
"license": "MIT",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist/*"
|
|
27
27
|
],
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"typescript": "5.9.3",
|
|
30
|
+
"@saasmakers/config": "0.1.9"
|
|
31
|
+
},
|
|
28
32
|
"scripts": {
|
|
29
33
|
"build": "unbuild",
|
|
30
34
|
"lint": "eslint . --max-warnings=0",
|
|
31
35
|
"typecheck": "tsc --noEmit --skipLibCheck"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@saasmakers/config": "workspace:*",
|
|
35
|
-
"typescript": "5.9.3"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|