mirror of
https://github.com/frappe/books.git
synced 2024-12-22 02:49:03 +00:00
chore: format files using prettier
This commit is contained in:
parent
711b4d9b20
commit
8c9d81d298
@ -1,4 +1,3 @@
|
||||
**/types.ts
|
||||
**/dist_electron
|
||||
**/dummy/*.json
|
||||
**/fixtures/countryInfo.json
|
@ -97,7 +97,6 @@ couple of seconds to render this because of how dev mode works. Each file is
|
||||
individually served by the dev server. And there are many files that have to be
|
||||
sent.
|
||||
|
||||
|
||||
**Note: Debug Electron Main Process**
|
||||
|
||||
When in dev mode electron runs with the `--inspect` flag which allows an
|
||||
|
@ -8,7 +8,7 @@ import {
|
||||
assertDoesNotThrow,
|
||||
assertThrows,
|
||||
BaseMetaKey,
|
||||
getBuiltTestSchemaMap
|
||||
getBuiltTestSchemaMap,
|
||||
} from './helpers';
|
||||
|
||||
/**
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,3 @@
|
||||
|
||||
{
|
||||
"countryCode": "ae",
|
||||
"name": "U.A.E - Chart of Accounts",
|
||||
|
@ -102,6 +102,7 @@ strings globally since this will be evaluated before the map is loaded.
|
||||
|
||||
The doc and db handlers have observers (instances of `Observable`) as
|
||||
properties, these can be accessed using
|
||||
|
||||
- `fyo.db.observer`
|
||||
- `fyo.doc.observer`
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
plugins: [require('tailwindcss'), require('autoprefixer')]
|
||||
plugins: [require('tailwindcss'), require('autoprefixer')],
|
||||
};
|
||||
|
@ -6,14 +6,14 @@ import {
|
||||
cleanSchemas,
|
||||
getAbstractCombinedSchemas,
|
||||
getRegionalCombinedSchemas,
|
||||
setSchemaNameOnFields
|
||||
setSchemaNameOnFields,
|
||||
} from '../index';
|
||||
import { metaSchemas } from '../schemas';
|
||||
import {
|
||||
everyFieldExists,
|
||||
getTestSchemaMap,
|
||||
someFieldExists,
|
||||
subtract
|
||||
subtract,
|
||||
} from './helpers';
|
||||
|
||||
const { appSchemaMap, regionalSchemaMap } = getTestSchemaMap();
|
||||
|
@ -6,7 +6,7 @@ import { getValueMapFromList } from 'utils';
|
||||
import {
|
||||
getTestDbPath,
|
||||
getTestFyo,
|
||||
getTestSetupWizardOptions
|
||||
getTestSetupWizardOptions,
|
||||
} from './helpers';
|
||||
|
||||
const dbPath = getTestDbPath();
|
||||
|
@ -2,7 +2,6 @@ import vue from '@vitejs/plugin-vue';
|
||||
import path from 'path';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
|
||||
/**
|
||||
* This vite config file is used only for dev mode, i.e.
|
||||
* to create a serve build modules of the source code
|
||||
|
Loading…
Reference in New Issue
Block a user