@manojkmfsi/monodog 1.1.8 → 1.1.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @manojkmfsi/monoapp
2
2
 
3
+ ## 1.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Remove config from prod
8
+
9
+ ## 1.1.9
10
+
11
+ ### Patch Changes
12
+
13
+ - remove turbo
14
+
3
15
  ## 1.1.8
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manojkmfsi/monodog",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "App for monodog monorepo",
5
5
  "license": "MIT",
6
6
  "repository": {
package/.eslintrc.cjs DELETED
@@ -1,15 +0,0 @@
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
- };
@@ -1,4 +0,0 @@
1
-
2
- > @manojkmfsi/monodog@1.1.8 build /home/runner/work/monodog/monodog/packages/monoapp
3
- > rm -rf dist && tsc
4
-
package/tsconfig.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2020",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "esModuleInterop": true,
7
- "forceConsistentCasingInFileNames": true,
8
- "strict": true,
9
- "skipLibCheck": true,
10
- "outDir": "./dist",
11
- "rootDir": "./src",
12
- "allowJs": true
13
- },
14
- "include": ["src/**/*"],
15
- "exclude": ["node_modules", "__tests__", "dist"]
16
- }