@manojkmfsi/monodog 1.0.10 → 1.0.12
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/.eslintrc.cjs +15 -0
- package/CHANGELOG.md +103 -0
- package/dist/setup.js +1 -0
- package/monodog-conf.example.json +16 -0
- package/monodog-dashboard/dist/assets/index-2d967652.js +71 -0
- package/monodog-dashboard/dist/assets/index-504dc418.css +1 -0
- package/monodog-dashboard/dist/index.html +15 -0
- package/package.json +1 -8
- package/release.config.js +41 -0
- package/src/setup.ts +1 -0
- package/tsconfig.json +16 -0
- package/prisma/monodog.db +0 -0
package/.eslintrc.cjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
parser: '@typescript-eslint/parser',
|
|
4
|
+
plugins: ['@typescript-eslint'],
|
|
5
|
+
extends: [
|
|
6
|
+
'eslint:recommended',
|
|
7
|
+
'plugin:@typescript-eslint/recommended',
|
|
8
|
+
],
|
|
9
|
+
rules: {
|
|
10
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
11
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
12
|
+
"@typescript-eslint/no-unused-vars": "off",
|
|
13
|
+
},
|
|
14
|
+
ignorePatterns: ['dist', 'node_modules', '**/*.js'],
|
|
15
|
+
};
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# @manojkmfsi/monoapp
|
|
2
|
+
|
|
3
|
+
## 1.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- remove postinstall
|
|
8
|
+
|
|
9
|
+
## 1.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- updated installation script
|
|
14
|
+
|
|
15
|
+
## 1.0.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- updated monodog folder
|
|
20
|
+
|
|
21
|
+
## 1.0.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- updated pkg name
|
|
26
|
+
|
|
27
|
+
## 1.0.1
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- updated pkg name
|
|
32
|
+
|
|
33
|
+
## 3.1.1
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- updated org
|
|
38
|
+
|
|
39
|
+
## 3.1.0
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- 76
|
|
44
|
+
|
|
45
|
+
## 3.0.0
|
|
46
|
+
|
|
47
|
+
### Major Changes
|
|
48
|
+
|
|
49
|
+
- 75
|
|
50
|
+
|
|
51
|
+
## 2.1.0
|
|
52
|
+
|
|
53
|
+
### Minor Changes
|
|
54
|
+
|
|
55
|
+
- 74
|
|
56
|
+
|
|
57
|
+
## 2.0.2
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- 73
|
|
62
|
+
|
|
63
|
+
## 2.0.1
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- 72
|
|
68
|
+
|
|
69
|
+
## 2.0.0
|
|
70
|
+
|
|
71
|
+
### Major Changes
|
|
72
|
+
|
|
73
|
+
- 71
|
|
74
|
+
|
|
75
|
+
## 1.1.0
|
|
76
|
+
|
|
77
|
+
### Minor Changes
|
|
78
|
+
|
|
79
|
+
- 67
|
|
80
|
+
|
|
81
|
+
## 1.0.6
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- 66
|
|
86
|
+
|
|
87
|
+
## 1.0.5
|
|
88
|
+
|
|
89
|
+
### Patch Changes
|
|
90
|
+
|
|
91
|
+
- 40
|
|
92
|
+
|
|
93
|
+
## 1.0.4
|
|
94
|
+
|
|
95
|
+
### Patch Changes
|
|
96
|
+
|
|
97
|
+
- 39
|
|
98
|
+
|
|
99
|
+
## 1.0.3
|
|
100
|
+
|
|
101
|
+
### Patch Changes
|
|
102
|
+
|
|
103
|
+
- 35
|
package/dist/setup.js
CHANGED
|
@@ -52,6 +52,7 @@ function ensureWorkspace(rootDir) {
|
|
|
52
52
|
// 3. Install deps
|
|
53
53
|
ensureWorkspace(process.cwd());
|
|
54
54
|
(0, child_process_1.execSync)('pnpm install', { stdio: 'inherit' });
|
|
55
|
+
(0, child_process_1.execSync)('pnpm --filter monodog-app migrate', { stdio: 'inherit' });
|
|
55
56
|
console.log(`
|
|
56
57
|
✅ Monodog ready!
|
|
57
58
|
|