Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align casing of file and folder names resolves #57 #88

Merged
merged 2 commits into from
Sep 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_OPTIONS: --max-old-space-size=4096
baruchiro marked this conversation as resolved.
Show resolved Hide resolved
run: |
yarn
yarn build --publish $PUBLISH_PARAM
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: ['@babel/preset-typescript', '@vue/cli-plugin-babel/preset'],
presets: ['@babel/preset-typescript', '@vue/cli-plugin-babel/preset']
};
8 changes: 4 additions & 4 deletions src/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@

<script>
import { shell } from 'electron';
import Importers from '@/components/App/Importers';
import Exporters from '@/components/App/Exporters';
import Importers from '@/components/app/Importers';
import Exporters from '@/components/app/Exporters';
import ProfileChip from '@/components/shared/ProfileChip';
import ReportProblemDialog from './App/ReportProblemDialog';
import MainContent from './App/MainContent';
import ReportProblemDialog from './app/ReportProblemDialog';
import MainContent from './app/MainContent';

export default {
name: 'App',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<script lang="ts">
import Vue from 'vue';
import { mapGetters, mapActions } from 'vuex';
import { GLOBAL_CONFIG_GETTER, UPDATE_GLOBAL_CONFIG_ACTION } from '@/store/modules/Config';
import { GLOBAL_CONFIG_GETTER, UPDATE_GLOBAL_CONFIG_ACTION } from '@/store/modules/config';
import { VForm } from '@/types/vuetify';

export default Vue.extend({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<script>
import { outputVendors } from '@/originalBudgetTrackingApp';
import Exporter from './Exporters/Exporter';
import Exporter from './exporters/Exporter';

export default {
components: { Exporter },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@
</template>

<script>
import { GET_IMPORTERS_GETTER } from '@/store/modules/Config';
import { GET_IMPORTERS_GETTER } from '@/store/modules/config';
import { mapGetters } from 'vuex';
import { inputVendors } from '@/originalBudgetTrackingApp';
import AddImporter from './Importers/AddImporter';
import Importer from './Importers/Importer';
import AddImporter from './importers/AddImporter';
import Importer from './importers/Importer';

export default {
components: { AddImporter, Importer },
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</template>

<script>
import { GET_EXPORTER_GETTER, ADD_EXPORTER_ACTION } from '@/store/modules/Config';
import { GET_EXPORTER_GETTER, ADD_EXPORTER_ACTION } from '@/store/modules/config';

export default {
name: 'JsonExporter',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

<script>
import { mapActions } from 'vuex';
import { ADD_IMPORTER_ACTION } from '@/store/modules/Config';
import { ADD_IMPORTER_ACTION } from '@/store/modules/config';

function initData(importerProp) {
const importerToAdd = { ...importerProp, loginFields: {} };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<script>
import { mapActions } from 'vuex';
import { REMOVE_IMPORTER_ACTION } from '@/store/modules/Config';
import { REMOVE_IMPORTER_ACTION } from '@/store/modules/config';
import DeleteImporterDialog from './DeleteImporterDialog';

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/store/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from 'vue';
import Vuex from 'vuex';
import Config from './modules/Config';
import Config from './modules/config';
import configPersistPlugin from './plugins/persisted-config';

Vue.use(Vuex);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions test/unit/specs/importers.vue.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createLocalVue, shallowMount, Wrapper } from '@vue/test-utils';
import Vuex, { Store } from 'vuex';
import Importers from '../../../src/components/App/Importers.vue';
import AddImporter from '../../../src/components/App/Importers/AddImporter.vue';
import Importers from '../../../src/components/app/Importers.vue';
import AddImporter from '../../../src/components/app/importers/AddImporter.vue';
import { inputVendors } from '../../../src/originalBudgetTrackingApp';

const localVue = createLocalVue();
Expand Down