@aerogel/cli 0.0.0-next.5953e1862a7c89a8fc80da087467d67d4f4e8c73 → 0.0.0-next.6c02970f90d4e979a72530f1fa0c650785d6538f

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.
Files changed (50) hide show
  1. package/.prettierignore +1 -0
  2. package/dist/aerogel-cli.cjs.js +1 -1
  3. package/dist/aerogel-cli.cjs.js.map +1 -1
  4. package/dist/aerogel-cli.d.ts +2 -2
  5. package/dist/aerogel-cli.esm.js +1 -1
  6. package/dist/aerogel-cli.esm.js.map +1 -1
  7. package/package.json +3 -3
  8. package/src/cli.ts +23 -3
  9. package/src/commands/Command.ts +11 -6
  10. package/src/commands/create.ts +5 -5
  11. package/src/commands/generate-component.test.ts +21 -0
  12. package/src/commands/generate-component.ts +42 -12
  13. package/src/commands/generate-model.ts +6 -6
  14. package/src/commands/generate-overrides.ts +85 -0
  15. package/src/commands/generate-service.test.ts +1 -1
  16. package/src/commands/generate-service.ts +5 -5
  17. package/src/commands/info.ts +14 -0
  18. package/src/commands/install.ts +4 -4
  19. package/src/lib/File.mock.ts +1 -5
  20. package/src/lib/File.ts +1 -1
  21. package/src/lib/Log.mock.ts +1 -5
  22. package/src/lib/Log.ts +1 -1
  23. package/src/lib/Shell.mock.ts +1 -1
  24. package/src/lib/Shell.ts +1 -1
  25. package/src/plugins/Histoire.ts +23 -3
  26. package/src/plugins/Plugin.ts +1 -1
  27. package/src/plugins/Solid.ts +6 -5
  28. package/src/testing/setup.ts +3 -6
  29. package/templates/app/.github/workflows/ci.yml +4 -4
  30. package/templates/app/cypress/cypress.config.ts +2 -4
  31. package/templates/app/cypress/support/e2e.ts +1 -3
  32. package/templates/app/cypress/tsconfig.json +3 -1
  33. package/templates/app/package.json +3 -2
  34. package/templates/app/src/main.ts +3 -3
  35. package/templates/component-button/[component.name].vue +42 -0
  36. package/templates/component-button-story/[component.name].story.vue +77 -0
  37. package/templates/component-checkbox/[component.name].vue +34 -0
  38. package/templates/component-checkbox-story/[component.name].story.vue +63 -0
  39. package/templates/component-input/[component.name].vue +1 -0
  40. package/templates/overrides/components/index.ts +15 -0
  41. package/templates/overrides/components/overrides/AlertModal.vue +11 -0
  42. package/templates/overrides/components/overrides/ConfirmModal.vue +20 -0
  43. package/templates/overrides/components/overrides/ErrorReportModal.vue +35 -0
  44. package/templates/overrides/components/overrides/LoadingModal.vue +12 -0
  45. package/templates/overrides/components/overrides/ModalWrapper.vue +22 -0
  46. package/templates/overrides/components/overrides/SnackbarNotification.vue +34 -0
  47. package/templates/overrides-story/Overrides.story.vue +86 -0
  48. package/templates/postcss-pseudo-classes/postcss.config.js +15 -0
  49. package/templates/service/[service.name].ts +1 -1
  50. /package/bin/{ag → gel} +0 -0
@@ -1,4 +1,4 @@
1
- import install from '@aerogel/cypress/dist/plugin';
1
+ import { setupAerogelNodeEvents } from '@aerogel/cypress/config';
2
2
  import { defineConfig } from 'cypress';
3
3
 
4
4
  export default defineConfig({
@@ -9,8 +9,6 @@ export default defineConfig({
9
9
  runMode: 3,
10
10
  openMode: 0,
11
11
  },
12
- setupNodeEvents(on) {
13
- install(on);
14
- },
12
+ setupNodeEvents: setupAerogelNodeEvents,
15
13
  },
16
14
  });
@@ -1,3 +1 @@
1
- import install from '@aerogel/cypress';
2
-
3
- install();
1
+ import '@aerogel/cypress/support';
@@ -3,10 +3,12 @@
3
3
  "target": "es5",
4
4
  "lib": ["es5", "dom"],
5
5
  "types": ["cypress", "node"],
6
+ "strict": true,
6
7
  "baseUrl": ".",
7
8
  "paths": {
9
+ "@/*": ["../src/*"],
8
10
  "@cy/*": ["./*"]
9
11
  }
10
12
  },
11
- "include": ["**/*.ts"]
13
+ "include": ["**/*.ts", "../src/**/*.ts"]
12
14
  }
@@ -11,10 +11,10 @@
11
11
  "cy:test-snapshots": "docker run -it -u `id -u ${whoami}` -e CYPRESS_SNAPSHOTS=true -v ./:/app -w /app cypress/base:18.16.0 sh -c \"npx cypress install && npm run cy:test\"",
12
12
  "cy:test-snapshots:ci": "docker run -e CYPRESS_SNAPSHOTS=true -v ./:/app -w /app cypress/base:18.16.0 sh -c \"npx cypress install && npm run cy:test\"",
13
13
  "dev": "vite",
14
- "lint": "noeldemartin-lint src",
14
+ "lint": "noeldemartin-lint src cypress",
15
15
  "test": "vitest --run",
16
16
  "test:ci": "vitest --run --reporter verbose",
17
- "test:serve-app": "vite --port 5001"
17
+ "test:serve-app": "vite --port 5001 --mode testing"
18
18
  },
19
19
  "dependencies": {
20
20
  "@aerogel/core": "<% &dependencies.aerogelCore %>",
@@ -46,6 +46,7 @@
46
46
  "prettier-eslint-cli": "^7.1.0",
47
47
  "prettier-plugin-tailwindcss": "^0.2.8",
48
48
  "start-server-and-test": "^2.0.0",
49
+ "typescript": "~5.4",
49
50
  "unplugin-icons": "^0.16.3",
50
51
  "unplugin-vue-components": "^0.24.1",
51
52
  "vite": "^4.3.0",
@@ -1,13 +1,13 @@
1
1
  import i18n from '@aerogel/plugin-i18n';
2
2
  import soukai from '@aerogel/plugin-soukai';
3
- import { bootstrapApplication } from '@aerogel/core';
3
+ import { bootstrap } from '@aerogel/core';
4
4
 
5
5
  import './assets/css/styles.css';
6
6
  import App from './App.vue';
7
7
 
8
- bootstrapApplication(App, {
8
+ bootstrap(App, {
9
9
  plugins: [
10
10
  i18n({ messages: import.meta.glob('@/lang/*.yaml') }),
11
- soukai({ models: import.meta.glob('@/models/*', { eager: true }) }),
11
+ soukai({ models: import.meta.glob(['@/models/*', '!**/*.test.ts'], { eager: true }) }),
12
12
  ],
13
13
  });
@@ -0,0 +1,42 @@
1
+ <template>
2
+ <AGHeadlessButton :class="variantClasses" :disabled="disabled">
3
+ <slot />
4
+ </AGHeadlessButton>
5
+ </template>
6
+
7
+ <script setup lang="ts">
8
+ import { Colors, booleanProp, enumProp, removeInteractiveClasses } from '@aerogel/core';
9
+ import { computed } from 'vue';
10
+
11
+ const props = defineProps({
12
+ color: enumProp(Colors, Colors.Primary),
13
+ disabled: booleanProp(),
14
+ });
15
+
16
+ const colorClasses = computed(() => {
17
+ switch (props.color) {
18
+ case Colors.Secondary:
19
+ // Add your custom color classes here.
20
+ return '';
21
+ case Colors.Clear:
22
+ // Add your custom color classes here.
23
+ return '';
24
+ case Colors.Danger:
25
+ // Add your custom color classes here.
26
+ return '';
27
+ case Colors.Primary:
28
+ default:
29
+ // Add your custom color classes here.
30
+ return '';
31
+ }
32
+ });
33
+
34
+ const variantClasses = computed(() => {
35
+ if (props.disabled) {
36
+ // Add additional classes for disabled state here.
37
+ return removeInteractiveClasses(colorClasses.value);
38
+ }
39
+
40
+ return colorClasses.value;
41
+ });
42
+ </script>
@@ -0,0 +1,77 @@
1
+ <template>
2
+ <Story :layout="{ type: 'grid' }">
3
+ <Variant title="Playground">
4
+ <<% component.name %> :color="color">
5
+ {{ content }}
6
+ </<% component.name %>>
7
+
8
+ <template #controls>
9
+ <HstText v-model="content" title="Content" />
10
+ <HstSelect v-model="color" title="Color" :options="colorOptions" />
11
+ </template>
12
+ </Variant>
13
+
14
+ <Variant title="Default">
15
+ <<% component.name %>>
16
+ Click me!
17
+ </<% component.name %>>
18
+ </Variant>
19
+
20
+ <Variant title="Hover">
21
+ <<% component.name %> class=":hover">
22
+ Click me!
23
+ </<% component.name %>>
24
+ </Variant>
25
+
26
+ <Variant title="Focus">
27
+ <<% component.name %> class=":focus :focus-visible">
28
+ Click me!
29
+ </<% component.name %>>
30
+ </Variant>
31
+
32
+ <Variant title="Disabled">
33
+ <<% component.name %> disabled>
34
+ You can't click me
35
+ </<% component.name %>>
36
+ </Variant>
37
+
38
+ <Variant title="Colors" :layout="{ width: '300px' }">
39
+ <div class="flex items-center gap-2">
40
+ <<% component.name %> color="primary">
41
+ Primary
42
+ </<% component.name %>>
43
+ <<% component.name %> color="secondary">
44
+ Secondary
45
+ </<% component.name %>>
46
+ <<% component.name %> color="danger">
47
+ Danger
48
+ </<% component.name %>>
49
+ <<% component.name %> color="clear">
50
+ Clear
51
+ </<% component.name %>>
52
+ </div>
53
+ </Variant>
54
+ </Story>
55
+ </template>
56
+
57
+ <script setup lang="ts">
58
+ import { Colors } from '@aerogel/core';
59
+ import { invert } from '@noeldemartin/utils';
60
+ import { ref } from 'vue';
61
+ import type { Color } from '@aerogel/core';
62
+
63
+ const content = ref('Click me!');
64
+ const color = ref<Color>(Colors.Primary);
65
+ const colorOptions = invert(Colors);
66
+ </script>
67
+
68
+ <style>
69
+ .story-<% component.slug %> {
70
+ grid-template-columns: repeat(2, 300px) !important;
71
+ }
72
+
73
+ .story-<% component.slug %> .variant-playground,
74
+ .story-<% component.slug %> .variant-colors{
75
+ grid-column: 1 / -1;
76
+ }
77
+ </style>
@@ -0,0 +1,34 @@
1
+ <template>
2
+ <AGHeadlessInput
3
+ ref="$input"
4
+ :name="name"
5
+ :class="className"
6
+ :label="label"
7
+ >
8
+ <AGHeadlessInputInput
9
+ v-bind="attrs"
10
+ type="checkbox"
11
+ />
12
+ <div v-if="$slots.default">
13
+ <AGHeadlessInputLabel>
14
+ <slot />
15
+ </AGHeadlessInputLabel>
16
+ <AGHeadlessInputError />
17
+ </div>
18
+ </AGHeadlessInput>
19
+ </template>
20
+
21
+ <script setup lang="ts">
22
+ import { AGHeadlessInputLabel, componentRef, stringProp, useInputAttrs } from '@aerogel/core';
23
+ import type { IAGHeadlessInput } from '@aerogel/core';
24
+
25
+ defineOptions({ inheritAttrs: false });
26
+ defineProps({
27
+ name: stringProp(),
28
+ label: stringProp(),
29
+ inputClass: stringProp(''),
30
+ });
31
+
32
+ const $input = componentRef<IAGHeadlessInput>();
33
+ const [attrs, className] = useInputAttrs();
34
+ </script>
@@ -0,0 +1,63 @@
1
+ <template>
2
+ <Story group="base" :layout="{ type: 'grid' }">
3
+ <Variant title="Playground">
4
+ <AGForm :form="form" class="m-1">
5
+ <<% component.name %> name="accept" :form="form">
6
+ {{ label }}
7
+ </<% component.name %>>
8
+ </AGForm>
9
+
10
+ <template #controls>
11
+ <HstText v-model="label" title="Label" />
12
+ </template>
13
+ </Variant>
14
+
15
+ <Variant title="Default">
16
+ <<% component.name %> class="m-1">
17
+ Accept Terms & Conditions
18
+ </<% component.name %>>
19
+ </Variant>
20
+
21
+ <Variant title="Hover">
22
+ <<% component.name %> class="m-1" input-class=":hover">
23
+ Accept Terms & Conditions
24
+ </<% component.name %>>
25
+ </Variant>
26
+
27
+ <Variant title="Focus">
28
+ <<% component.name %> class="m-1" input-class=":focus :focus-visible">
29
+ Accept Terms & Conditions
30
+ </<% component.name %>>
31
+ </Variant>
32
+
33
+ <Variant title="Error">
34
+ <AGForm :form="errorForm" class="m-1">
35
+ <<% component.name %> name="accept">
36
+ Accept Terms & Conditions
37
+ </<% component.name %>>
38
+ </AGForm>
39
+ </Variant>
40
+ </Story>
41
+ </template>
42
+
43
+ <script setup lang="ts">
44
+ import { requiredBooleanInput, useForm } from '@aerogel/core';
45
+ import { ref } from 'vue';
46
+
47
+ const form = useForm({ accept: requiredBooleanInput(true) });
48
+ const errorForm = useForm({ accept: requiredBooleanInput() });
49
+ const label = ref('Accept Terms & Conditions');
50
+
51
+ form.submit();
52
+ errorForm.submit();
53
+ </script>
54
+
55
+ <style>
56
+ .story-<% component.slug %> {
57
+ grid-template-columns: repeat(2, 300px) !important;
58
+ }
59
+
60
+ .story-<% component.slug %> .variant-playground {
61
+ grid-column: 1 / -1;
62
+ }
63
+ </style>
@@ -2,6 +2,7 @@
2
2
  <AGHeadlessInput v-bind="props">
3
3
  <AGHeadlessInputLabel />
4
4
  <AGHeadlessInputInput v-bind="attrs" />
5
+ <AGHeadlessInputDescription />
5
6
  <AGHeadlessInputError />
6
7
  </AGHeadlessInput>
7
8
  </template>
@@ -0,0 +1,15 @@
1
+ import { UIComponents } from '@aerogel/core';
2
+
3
+ import AlertModal from './overrides/AlertModal.vue';
4
+ import ConfirmModal from './overrides/ConfirmModal.vue';
5
+ import ErrorReportModal from './overrides/ErrorReportModal.vue';
6
+ import LoadingModal from './overrides/LoadingModal.vue';
7
+ import SnackbarNotification from './overrides/SnackbarNotification.vue';
8
+
9
+ export const components = {
10
+ [UIComponents.AlertModal]: AlertModal,
11
+ [UIComponents.ConfirmModal]: ConfirmModal,
12
+ [UIComponents.ErrorReportModal]: ErrorReportModal,
13
+ [UIComponents.LoadingModal]: LoadingModal,
14
+ [UIComponents.Snackbar]: SnackbarNotification,
15
+ };
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <ModalWrapper :title="title">
3
+ <AGMarkdown :text="message" />
4
+ </ModalWrapper>
5
+ </template>
6
+
7
+ <script setup lang="ts">
8
+ import { useAlertModalProps } from '@aerogel/core';
9
+
10
+ defineProps(useAlertModalProps());
11
+ </script>
@@ -0,0 +1,20 @@
1
+ <template>
2
+ <ModalWrapper v-slot="{ close }" :title="title" :cancellable="false">
3
+ <AGMarkdown :text="message" />
4
+ <div class="mt-4 flex flex-row-reverse">
5
+ <AGButton :color="acceptColor" @click="close(true)">
6
+ {{ renderedAcceptText }}
7
+ </AGButton>
8
+ <AGButton :color="cancelColor" class="mr-2" @click="close(false)">
9
+ {{ renderedCancelText }}
10
+ </AGButton>
11
+ </div>
12
+ </ModalWrapper>
13
+ </template>
14
+
15
+ <script setup lang="ts">
16
+ import { useConfirmModal, useConfirmModalProps } from '@aerogel/core';
17
+
18
+ const props = defineProps(useConfirmModalProps());
19
+ const { renderedAcceptText, renderedCancelText } = useConfirmModal(props);
20
+ </script>
@@ -0,0 +1,35 @@
1
+ <template>
2
+ <ModalWrapper>
3
+ <AGErrorReportModalTitle
4
+ :report="report"
5
+ :current-report="activeReportIndex + 1"
6
+ :total-reports="reports.length"
7
+ />
8
+ <AGButton color="clear" :disabled="activeReportIndex === 0" @click="activeReportIndex--">
9
+ {{ previousReportText }}
10
+ </AGButton>
11
+ <AGButton color="clear" :disabled="activeReportIndex === reports.length - 1" @click="activeReportIndex++">
12
+ {{ nextReportText }}
13
+ </AGButton>
14
+ <AGErrorReportModalButtons :report="report">
15
+ <template
16
+ #default="{ url, handler, iconComponent, description }: IAGErrorReportModalButtonsDefaultSlotProps"
17
+ >
18
+ <AGButton :url="url" :aria-label="description" @click="handler">
19
+ <component :is="iconComponent" />
20
+ {{ description }}
21
+ </AGButton>
22
+ </template>
23
+ </AGErrorReportModalButtons>
24
+ <AGMarkdown v-if="report.description" :text="report.description" />
25
+ <pre v-text="details" />
26
+ </ModalWrapper>
27
+ </template>
28
+
29
+ <script setup lang="ts">
30
+ import { useErrorReportModal, useErrorReportModalProps } from '@aerogel/core';
31
+ import type { IAGErrorReportModalButtonsDefaultSlotProps } from '@aerogel/core';
32
+
33
+ const props = defineProps(useErrorReportModalProps());
34
+ const { activeReportIndex, details, nextReportText, previousReportText, report } = useErrorReportModal(props);
35
+ </script>
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <ModalWrapper :cancellable="false">
3
+ <AGMarkdown :text="renderedMessage" />
4
+ </ModalWrapper>
5
+ </template>
6
+
7
+ <script setup lang="ts">
8
+ import { useLoadingModal, useLoadingModalProps } from '@aerogel/core';
9
+
10
+ const props = defineProps(useLoadingModalProps());
11
+ const { renderedMessage } = useLoadingModal(props);
12
+ </script>
@@ -0,0 +1,22 @@
1
+ <template>
2
+ <AGHeadlessModal ref="$modal" v-slot="{ close }" v-bind="props">
3
+ <AGHeadlessModalPanel>
4
+ <AGHeadlessModalTitle v-if="title">
5
+ <AGMarkdown :text="title" inline />
6
+ </AGHeadlessModalTitle>
7
+ <slot :close="close" />
8
+ </AGHeadlessModalPanel>
9
+ </AGHeadlessModal>
10
+ </template>
11
+
12
+ <script setup lang="ts">
13
+ import { ref } from 'vue';
14
+ import { useModalExpose, useModalProps } from '@aerogel/core';
15
+ import type { IAGHeadlessModal, IAGModal } from '@aerogel/core';
16
+
17
+ const props = defineProps(useModalProps());
18
+ const $modal = ref<IAGHeadlessModal>();
19
+
20
+ defineOptions({ inheritAttrs: false });
21
+ defineExpose<IAGModal>(useModalExpose($modal));
22
+ </script>
@@ -0,0 +1,34 @@
1
+ <template>
2
+ <AGHeadlessSnackbar :class="colorClasses">
3
+ <AGMarkdown :text="message" inline />
4
+
5
+ <AGButton
6
+ v-for="(action, i) of actions"
7
+ :key="i"
8
+ :color="color"
9
+ @click="activate(action)"
10
+ >
11
+ {{ action.text }}
12
+ </AGButton>
13
+ </AGHeadlessSnackbar>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ import { computed } from 'vue';
18
+ import { Colors, useSnackbar, useSnackbarProps } from '@aerogel/core';
19
+
20
+ const props = defineProps(useSnackbarProps());
21
+ const { activate } = useSnackbar(props);
22
+
23
+ const colorClasses = computed(() => {
24
+ switch (props.color) {
25
+ case Colors.Danger:
26
+ // Add your custom color classes here.
27
+ return '';
28
+ case Colors.Secondary:
29
+ default:
30
+ // Add your custom color classes here.
31
+ return '';
32
+ }
33
+ });
34
+ </script>
@@ -0,0 +1,86 @@
1
+ <template>
2
+ <Story :layout="{ type: 'grid', width: '90%' }">
3
+ <Variant title="Playground">
4
+ <div class="flex space-x-3">
5
+ <AGButton @click="$ui.alert(alertTitle, alertMessage)">
6
+ Alert
7
+ </AGButton>
8
+ <AGButton @click="$ui.confirm(confirmTitle, confirmMessage)">
9
+ Confirm
10
+ </AGButton>
11
+ <AGButton @click="$ui.loading(loadingMessage, after({ seconds: loadingDuration }))">
12
+ Loading
13
+ </AGButton>
14
+ <AGButton @click="$ui.showSnackbar(snackbarMessage, snackbarOptions)">
15
+ Snackbar
16
+ </AGButton>
17
+ <AGButton @click="$errors.inspect(errorReports)">
18
+ Error Report
19
+ </AGButton>
20
+ </div>
21
+
22
+ <AGAppOverlays />
23
+
24
+ <template #controls>
25
+ <HstText v-model="alertTitle" title="Alert Title" />
26
+ <HstText v-model="alertMessage" title="Alert Message" />
27
+ <HstText v-model="confirmTitle" title="Confirm Title" />
28
+ <HstText v-model="confirmMessage" title="Confirm Message" />
29
+ <HstText v-model="loadingMessage" title="Loading Message" />
30
+ <HstNumber v-model="loadingDuration" title="Loading Duration" />
31
+ <HstText v-model="snackbarMessage" title="Snackbar Message" />
32
+ <HstSelect v-model="snackbarColor" title="Snackbar Color" :options="snackbarColors" />
33
+ <HstText v-model="snackbarAction" title="Snackbar Action" />
34
+ <HstText v-model="errorReportTitle" title="Error Report Title" />
35
+ <HstText v-model="errorReportDescription" title="Error Report Description" />
36
+ </template>
37
+ </Variant>
38
+ </Story>
39
+ </template>
40
+
41
+ <script setup lang="ts">
42
+ import { computed, ref } from 'vue';
43
+ import { after, invert } from '@noeldemartin/utils';
44
+ import { Colors, SnackbarColors } from '@aerogel/core';
45
+ import type { ErrorReport, ShowSnackbarOptions } from '@aerogel/core';
46
+
47
+ const alertTitle = ref('Something important happened');
48
+ const alertMessage = ref('And here you can read the details...');
49
+ const confirmTitle = ref('Confirmation');
50
+ const confirmMessage = ref('Are you sure?');
51
+ const loadingMessage = ref('Loading...');
52
+ const loadingDuration = ref(3);
53
+ const snackbarMessage = ref('Something happened');
54
+ const snackbarColor = ref(Colors.Secondary);
55
+ const snackbarColors = invert(SnackbarColors);
56
+ const snackbarAction = ref('Ok');
57
+ const snackbarOptions = computed((): ShowSnackbarOptions => {
58
+ if (!snackbarAction.value) {
59
+ return {};
60
+ }
61
+
62
+ return {
63
+ color: snackbarColor.value,
64
+ actions: [
65
+ {
66
+ text: snackbarAction.value,
67
+ dismiss: true,
68
+ },
69
+ ],
70
+ };
71
+ });
72
+ const errorReportTitle = ref('Error');
73
+ const errorReportDescription = ref('Something went wrong!');
74
+ const errorReports = computed((): ErrorReport[] => [
75
+ {
76
+ title: errorReportTitle.value,
77
+ description: errorReportDescription.value,
78
+ details: new Error().stack,
79
+ },
80
+ {
81
+ title: errorReportTitle.value,
82
+ description: errorReportDescription.value,
83
+ details: new Error().stack,
84
+ },
85
+ ]);
86
+ </script>
@@ -0,0 +1,15 @@
1
+ const plugins = {
2
+ tailwindcss: {},
3
+ autoprefixer: {},
4
+ };
5
+
6
+ if (process.env.NODE_ENV === 'development') {
7
+ plugins['postcss-pseudo-classes'] = {
8
+ blacklist: [],
9
+ restrictTo: ['focus', 'focus-visible', 'focus-within', 'hover'],
10
+ allCombinations: true,
11
+ preserveBeforeAfter: false,
12
+ };
13
+ }
14
+
15
+ module.exports = { plugins };
@@ -5,4 +5,4 @@ export class <% service.name %>Service extends Service {
5
5
 
6
6
  }
7
7
 
8
- export default facade(new <% service.name %>Service());
8
+ export default facade(<% service.name %>Service);
/package/bin/{ag → gel} RENAMED
File without changes