diff --git a/.eslintignore b/.eslintignore
index 2dfe33f8..c8117eed 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,32 +1,2 @@
-# dependencies
-**/node_modules/*
-
-# build artifacts
-**/.next/*
-**/build/*
-**/dist/*
-**/esnext/*
-**/module/*
-**/test-results/*
-**/bin/*
-
-# unlintable file types
-*.csv
-*.d.ts.map
-*.graphql
-*.groovy
-*.html
-*.ico
-*.jpg
-*.json
-*.lock
-*.log
-*.md
-*.pem
-*.png
-*.svg
-*.txt
-*.yaml
-*.yml
-*.xml
-*.mp4
\ No newline at end of file
+/dist
+/docs
\ No newline at end of file
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 00000000..e7f2ab47
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,99 @@
+{
+ "extends": [
+ "oclif",
+ "oclif-typescript"
+ ],
+ "env": {
+ "es6": true,
+ "browser": true,
+ "node": true,
+ "mocha": true
+ },
+ "parserOptions": {
+ "sourceType": "module"
+ },
+ "plugins": [
+ "@typescript-eslint"
+ ],
+ "ignorePatterns": ["dist/*", "test/*"],
+ "rules": {
+ "no-console": 1,
+ "linebreak-style": 0,
+ "no-extra-semi": 2,
+ "semi": [
+ 2,
+ "always"
+ ],
+ "semi-spacing": 2,
+ "quotes": [
+ 2,
+ "single"
+ ],
+ "indent": [
+ 2,
+ 2,
+ {
+ "SwitchCase": 1
+ }
+ ],
+ "interface-name": 0,
+ "object-literal-sort-keys": 0,
+ "no-consecutive-blank-lines": 0,
+ "no-any": 0,
+ "no-var": 0,
+ "no-cond-assign": 2,
+ "no-debugger": 2,
+ "no-duplicate-imports": 2,
+ "no-empty": 2,
+ "no-eval": 2,
+ "no-invalid-this": 2,
+ "no-irregular-whitespace": 2,
+ "no-return-await": 2,
+ "no-trailing-spaces": 2,
+ "no-empty-character-class": 2,
+ "no-unsafe-finally": 2,
+ "no-unused-vars": 2,
+ "no-unused-expressions": 2,
+ "no-undef": 2,
+ "array-type": 0,
+ "require-await": 2,
+ "prefer-arrow-callback": 2,
+ "arrow-spacing": 2,
+ "spaced-comment": 2,
+ "curly": 2,
+ "complexity": 2,
+ "max-classes-per-file": [
+ 2,
+ 1
+ ],
+ "max-len": [
+ 2,
+ 1000
+ ],
+ "max-lines": [
+ 2,
+ 200
+ ],
+ "new-parens": 2,
+ "newline-before-return": 2,
+ "newline-per-chained-call": 2,
+ "only-arrow-functions": 0,
+ "prefer-const": 2,
+ "prefer-object-spread": 2,
+ "prefer-template": 2,
+ "radix": 2,
+ "no-else-return": 2,
+ "object-curly-spacing": [
+ "error",
+ "always"
+ ],
+ "space-before-function-paren": 2,
+ "space-within-parens": 0,
+ "no-eq-null": 2,
+ "comma-dangle": 2,
+ "eqeqeq": 2,
+ "valid-typeof": 2,
+ "block-scoped-var": 2,
+ "interface-over-type-literal": 0
+ }
+}
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md
index 07731c89..c2d8c288 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.md
+++ b/.github/ISSUE_TEMPLATE/feature-request.md
@@ -1,19 +1,19 @@
----
-name: "\U0001F4A1 Feature Request"
-about: Suggest an idea or enhancement for the module.
-title: ''
-labels: 'enhancement'
-assignees: ''
----
-
-### Is your feature request related to a problem? Please describe
-
-
-### Describe the solution you'd like
-
-
-### Describe alternatives you've considered
-
-
-### Additional context
-
+---
+name: "\U0001F4A1 Feature Request"
+about: Suggest an idea or enhancement for the module.
+title: ''
+labels: 'enhancement'
+assignees: ''
+---
+
+### Is your feature request related to a problem? Please describe
+
+
+### Describe the solution you'd like
+
+
+### Describe alternatives you've considered
+
+
+### Additional context
+
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 9c0cf68b..6c789d7c 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,30 +1,30 @@
-
-
-### 🔗 Linked issue
-
-### ❓ Type of change
-
-
-
-- [ ] 📖 Documentation (updates to the documentation or readme)
-- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
-- [ ] 👌 Enhancement (improving an existing functionality like performance)
-- [ ] ✨ New feature (a non-breaking change that adds functionality)
-- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to change)
-
-### 📚 Description
-
-
-
-
-
-### 📝 Checklist
-
-
-
-
-
-- [ ] I have linked an issue or discussion.
-- [ ] I have updated the documentation accordingly.
+
+
+### 🔗 Linked issue
+
+### ❓ Type of change
+
+
+
+- [ ] 📖 Documentation (updates to the documentation or readme)
+- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
+- [ ] 👌 Enhancement (improving an existing functionality like performance)
+- [ ] ✨ New feature (a non-breaking change that adds functionality)
+- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to change)
+
+### 📚 Description
+
+
+
+
+
+### 📝 Checklist
+
+
+
+
+
+- [ ] I have linked an issue or discussion.
+- [ ] I have updated the documentation accordingly.
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index d0950033..00000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-# name: ci
-
-# on:
-# push:
-# branches:
-# - main
-# pull_request:
-# branches:
-# - main
-
-# jobs:
-# ci:
-# runs-on: ubuntu-latest
-
-# steps:
-# - uses: actions/checkout@v3
-# - uses: actions/setup-node@v3
-# with:
-# node-version: '16'
-# - name: Build
-# run: npm run build
-# - name: Release Edge
-# if: |
-# github.event_name == 'push' &&
-# !contains(github.event.head_commit.message, '[skip-release]')
-# run: ./scripts/release-edge.sh
-# env:
-# NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
diff --git a/.github/workflows/deploy-documentation.yml b/.github/workflows/deploy-documentation.yml
new file mode 100644
index 00000000..eb8dc918
--- /dev/null
+++ b/.github/workflows/deploy-documentation.yml
@@ -0,0 +1,28 @@
+name: Frontier Documentation to S3 Bucket
+on:
+ workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
+jobs:
+ update_documentation:
+ runs-on: windows-latest
+ steps:
+ - run: |
+ echo Documentation update pushed
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16.x
+ - name: Configure AWS credentials
+ uses: aws-actions/configure-aws-credentials@v1
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: us-east-2
+ - name: Install dependencies and build
+ run: |
+ cd docs
+ npm install
+ npm run generate
+ - name: deploy
+ run: aws s3 sync ./docs/.output/public/. s3://frontier.realdecoy.com
diff --git a/.github/workflows/deploy-package.yml b/.github/workflows/deploy-package.yml
new file mode 100644
index 00000000..478d68ea
--- /dev/null
+++ b/.github/workflows/deploy-package.yml
@@ -0,0 +1,43 @@
+name: Frontier Package to NPM
+on:
+ workflow_dispatch:
+ inputs:
+ isBeta:
+ description: 'Is a Beta release'
+ required: true
+ default: false
+ type: boolean
+ versionNumber:
+ description: 'Override Package.json version'
+ required: false
+ versionMessage:
+ description: 'Override git message with custom message'
+ required: false
+ push:
+ tags:
+ - "v*"
+jobs:
+ npm-publish:
+ name: npm-publish
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ # Setup .npmrc file to publish to npm
+ - name: Configuring Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: '20.x'
+ registry-url: 'https://registry.npmjs.org'
+ - name: Installing Dependencies
+ run: npm i
+ - name: Building project
+ run: npm run rebuild
+ - name: Manually Changing version using input
+ if: inputs.versionNumber != ''
+ run: npm version --no-git-tag-version ${{ inputs.versionNumber }} -m "${{ inputs.versionMessage && 'Updating version to %s' || github.event.head_commit.message }}"
+ - name: Publish to NPM
+ run: npm publish $PUBLISH_ARGS
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
+ PUBLISH_ARGS: --non-interactive ${{ inputs.isBeta && '--tag beta' || '' }}
diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml
deleted file mode 100644
index f920984b..00000000
--- a/.github/workflows/static.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-# Simple workflow for deploying static content to GitHub Pages
-name: Deploy static content to Pages
-
-on:
- # Runs on pushes targeting the default branch
- push:
- branches: ["main"]
-
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
-
-# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
-permissions:
- contents: read
- pages: write
- id-token: write
-
-# Allow one concurrent deployment
-concurrency:
- group: "pages"
- cancel-in-progress: true
-
-jobs:
- # Single deploy job since we're just deploying
- deploy:
- environment:
- name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Setup Pages
- uses: actions/configure-pages@v3
- - name: Upload artifact
- uses: actions/upload-pages-artifact@v1
- with:
- # Upload entire repository
- path: './docs/.output/public'
- - name: Deploy to GitHub Pages
- id: deployment
- uses: actions/deploy-pages@v1
diff --git a/.gitignore b/.gitignore
index 2d60ce08..1a77136f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,37 +1,12 @@
-# Dependencies
-node_modules/
-
-# Coverage and Testing
-test-results/
-coverage/
-
-# Build Artifacts
-build/
-dist/
-lib/
-!**/packages/frontier-plugins/plugin-mobile/src/**/lib
-module/
-esnext/
-types/
-
-/test-projects
-/rdv-*
-
-# Misc
-.DS_Store
-*.log*
-*.iml
-sw.*
-.rdvue/
-.env
-.nuxt
-.idea
-
-
-# OCLIF CLI related
+*-debug.log
+*-error.log
/.nyc_output
+/dist
+/lib
+/package-lock.json
/tmp
+node_modules
oclif.manifest.json
-tsconfig.tsbuildinfo
-
-
+# TEST PROJECT PREFIXES
+/rdv-*
+/mob-*
\ No newline at end of file
diff --git a/.husky/commit-msg b/.husky/commit-msg
old mode 100755
new mode 100644
index da159774..037f5ea1
--- a/.husky/commit-msg
+++ b/.husky/commit-msg
@@ -1,4 +1,4 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-# npx --no -- commitlint --edit "${1}"
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+# npx --no -- commitlint --edit "${1}"
diff --git a/.husky/pre-commit b/.husky/pre-commit
old mode 100755
new mode 100644
index 36af2198..6a3afe06
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1,4 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-npx lint-staged
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+npx lint-staged
diff --git a/.mocharc.json b/.mocharc.json
new file mode 100644
index 00000000..4a09d144
--- /dev/null
+++ b/.mocharc.json
@@ -0,0 +1,12 @@
+{
+ "require": [
+ "test/helpers/init.js",
+ "ts-node/register"
+ ],
+ "watch-extensions": [
+ "ts"
+ ],
+ "recursive": true,
+ "reporter": "spec",
+ "timeout": 60000
+}
diff --git a/.nvmrc b/.nvmrc
deleted file mode 100644
index 7da30cba..00000000
--- a/.nvmrc
+++ /dev/null
@@ -1 +0,0 @@
-16.13
diff --git a/.prettierrc b/.prettierrc
deleted file mode 100644
index cdbfd995..00000000
--- a/.prettierrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "proseWrap": "always",
- "singleQuote": true,
- "trailingComma": "all"
-}
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 00000000..85d5d03a
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,18 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Execute Command",
+ "skipFiles": [
+ "/**"
+ ],
+ "program": "${workspaceFolder}/bin/dev",
+ "args": [
+ "hello",
+ "world",
+ ],
+ }
+ ]
+}
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..2def0e88
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,661 @@
+ GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU Affero General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+.
\ No newline at end of file
diff --git a/README.md b/README.md
index 108cd9b5..929df4e8 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,9 @@
-
-
+
-
-
+
# Frontier
@@ -18,103 +16,123 @@ Contributions are welcome! You can help us by reporting or fixing bugs and givin
[](https://oclif.io)
+[](https://npmjs.org/package/@realdecoy/frontier)
+[](https://npmjs.org/package/@realdecoy/frontier)
+[](https://github.com/realdecoy/@realdecoy/frontier/blob/main/package.json)
-
-
-
+
+
+
## Table of Contents
-* [About](#about)
* [Usage](#usage)
-* [Bootstrapping](#bootstrapinghttpslernajsorgdocscore-conceptsbootstrapping)
-* [Addons](#addons)
-* [Libraries](#libraries)
* [Options](#options)
-* [Development Instructions](#development-instructions)
-* [Contributions](#contribution-instructions)
+* [Documentation](http://frontier.realdecoy.com/)
+* [Dev Instructions](#development)
+* [Testing](#testing)
-
-
-
-## About
-
-Frontier offers a set of standard libraries and typing kits that can be use across engineering projects to allow for more consistency software development. With frontier, a set of plugins are available for use by developers which can be used to easily generate base project files contributing to a faster development process.
+
+
+
## Usage
-
-When using the frontier cli tool it is prefered that when runing commands `yarn` is used over `npm`. When `npm` is used some frontier's mono repositoy features may not work as they should therefore `yarn` is needed. Using `yarn` also allows for parallel installation of the frontier tool to take place.
-
-
-
-#### [Bootstraping](https://lerna.js.org/docs/core-concepts/bootstrapping)
-Bootstraping allows for the linking of different frontier packages so they can import and utilize each other without having to be published.
-To bootstrap all frontier packages and their dependencies run the command:
-```
-npm run bootstrap
+```bash
+npm install --global @realdecoy/frontier
+frontier
```
or
+```bash
+npx @realdecoy/frontier
```
-yarn run bootstrap
-```
+> namespaces are optional if running frontier commands in an existing frontier project
-
+The help menu can be accessed with the commands:
-#### [Type Checking](https://lerna.js.org/docs/core-concepts/bootstrapping)
-Type checking, see the validation of the type of very variable in the code base.
-To type check all frontier packages and their dependencies run the command:
-```
-npm run typecheck
-```
-or
+```bash
+frontier --help
+frontier --help
```
-yarn run typecheck
+The current version of frontier can be retrieved with the command:
+
+```bash
+frontier --version
```
+
-
+
+
+
-## Components
+## Options
+```txt
+Usage:
+ frontier
-### Addons
+Namespaces:
+ dotnet - Dotnet API Scaffolding
+ mobile - React Native Scaffolding
+ vue - Vue.js Scaffolding
+
+Options:
+ --help - Show help information
+ --version - Show cli version
+```
-| Name | Package | Status | More Information
-| --- | --- | --- | --- |
-| Backend | `@rdfrontier/plugin-backend` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| Spring Boot | `@rdfrontier/plugin-java` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| Javascript | `@rdfrontier/plugin-js` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| .Net | `@rdfrontier/plugin-dotnet` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| Frontend | `@rdfrontier/plugin-frontend` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| Vue | `@rdfrontier/plugin-vue` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/main/packages/frontier-plugins/plugin-vue) |
-| React | `@rdfrontier/plugin-react` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| QA | `@rdfrontier/plugin-qa` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/main/packages/frontier-plugins/plugin-qa) |
-| Mobile | `@rdfrontier/plugin-mobile` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| React Native | `@rdfrontier/plugin-react-native` | Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
-| Infrastructure | `@rdfrontier/plugin-iac` | Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
+
-### Libraries
+## Namespaces
-| Name | Package | Status | More Information
+| Name | Namespace | Status | More Information
| --- | --- | --- | --- |
-| Frontier Standard Library | `@rdfrontier/stdlib` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/main/packages/frontier-libraries/stdlib) |
-| Frontier TypeKit | `@rdfrontier/typekit` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/main/packages/frontier-libraries/typekit) |
+| .Net | `dotnet` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/development/src/commands/dotnet) |
+| Infrastructure | `iac`| Pre-Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
+| Mobile | `mobile` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/development/src/commands/mobile) |
+| QA | `qa` | Technical Proposal | [ Read More ](https://github.com/realdecoy/frontier) |
+| Vue | `vue` | Ready | [ Read More ](https://github.com/realdecoy/frontier/tree/development/src/commands/vue) |
-
+
+
+
+## Development
+### Prerequisites & Recommendations
+
+| Name | Description | More Information
+| ---- | ----------- | --------------- |
+| node | runtime | version 19.8.1 |
+| yarn | dependency management | version 1.22.19 |
+| vscode | code editor | version 1.77.1 |
-
+
+### Install Dependencies
+```bash
+yarn install
+```
+or
+```bash
+npm install
+```
-## Development Instructions
-
+### Execute CLI commands
+```bash
+./bin/dev
+```
+e.g.
+```bash
+$ ./bin/dev vue create-project
+? Enter a project name: » my-rdvue-project
+```
### Building
#### Build
@@ -133,7 +151,7 @@ npm run build
#### Rebuild
-Rebuilding the frontier packages automatically reconstructs the packages forgetting about any previous compliation of them.
+Rebuilding the frontier packages automatically reconstructs the packages forgetting about any previous compilation of them.
To rebuild the frontier packages, run the command:
```bash
@@ -146,94 +164,36 @@ npm run rebuild
+## Creating a frontier namespace
+#### [Adam](https://github.com/realdecoy/frontier/tree/development/commands/adam)
+To support the creation of new frontier-based namespaces a template, [Adam](https://github.com/realdecoy/frontier/tree/development/src/commands/adam), has been provided to allow for easier development. This template provides the basic structure needed to develop a simple frontier-based namespace. It also provides sample commands and tests to get you started.
-### Testing
-Testing any piece of software created is critical for developers. Frontier uses the jest configuration for testing the packages in its monorepository.
-[`Testing Monorepo with Jest`](https://orlandobayo.com/blog/monorepo-testing-using-jest/)
-
-
+
-##### Run Unit Test Suites From Root
-To test all frontier packages from the root level run the command:
+## Testing
-```
-npm run test
-```
-or
-```
+### Run Unit Test Suite
+```bash
yarn run test
```
-
-
-
-##### Run Unit Test Suites From Package Level
-To test all frontier packages from the package level run the command:
-
-```
-npm run test:packages
-```
or
-```
-yarn run test:packages
-```
-
-
-
-##### Run Unit Test Suites From Package Level with Coverage Report
-Test converage is a measure of the amount of testing preformed by a test suite.
-To get a test coverage report of Frontier packages run the command:
-
-```
-npm run test:packages:ci
-```
-or
-```
-yarn run test:packages:ci
-```
-
-
-
-### Nuking
-Nuking strips the source code of all distribuatble code previously built.
-
-#### Nuke
-To nuke the packages of frontier, run the command:
-
-```bash
-yarn run nuke
-```
-or
```bash
-npm run nuke
+npm run test
```
-
-
-
-#### Nuke:artifacts
-To nuke artifacts of the frontier packages, run the command:
-
-```bash
-yarn run nuke:artifacts
-```
-or
-```bash
-npm run nuke:artifacts
-```
+### Creating Tests
+- create a ```.test.ts``` file in the respective folder
+- using ```chai``` assertion syntax, describe your unit test cases
+- visit the oclif [testing documentation](https://oclif.io/docs/testing) to see more details
-## Creating a frontier based project
-#### [Adam](https://github.com/realdecoy/frontier/tree/main/templates/adam)
-To support the creation of new frointer-based projects a template, [Adam](https://github.com/realdecoy/frontier/tree/main/templates/adam), has been provided to allow for easier development. This template provides the basic structure needed to develop a simple frontier-based project.
-
-
## Contribution Instructions
### Testing Requirements
-All code contributions made to this repository be properly tested. For testing the testing framework Jest is used. All test files must be writen with the extension ".spec.ts", to maintain the consistency of this project.
+All code contributions made to this repository must be properly tested. Jest is the testing framework that is used. All test files must be written with the extension ".spec.ts", to maintain the consistency of this project.
### GitHub Commits
-All commits maded to this repository be rewritten according to the [Conventional Commit Messages Standard](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13). This is to ensure that consistency is maintained throughout the repository.
+All commits made to this repository should be written according to the [Conventional Commit Messages Standard](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13). This is to ensure that consistency is maintained throughout the repository.
### Pull Request
-When creating a pull request ensure that the request is well documented and the changes made to the repository have been properly noted. Ensure to link the issue number/s that the pull request satisfies.
+When creating a pull request ensure that the request is well documented and the changes made to the repository have been properly noted. Ensure to link the issue number(s) that the pull request satisfies.
diff --git a/babel.root.js b/babel.root.js
deleted file mode 100644
index 8b0de9eb..00000000
--- a/babel.root.js
+++ /dev/null
@@ -1,21 +0,0 @@
-module.exports = ({
- envConfig = {},
- isTest = false,
- plugins = [],
- presets = [],
- runtimeConfig = {},
-}) => {
- presets = [
- ['@babel/preset-env', { loose: true, ...envConfig }],
- ['@babel/preset-typescript', { onlyRemoveTypeImports: true }],
- ].concat(presets);
-
- plugins = [
- ['@babel/plugin-transform-runtime', { ...runtimeConfig }],
- ].concat(plugins);
-
- return {
- plugins,
- presets,
- };
-};
diff --git a/packages/frontier-core/cli/bin/dev b/bin/dev
similarity index 100%
rename from packages/frontier-core/cli/bin/dev
rename to bin/dev
diff --git a/packages/frontier-core/cli/bin/dev.cmd b/bin/dev.cmd
similarity index 100%
rename from packages/frontier-core/cli/bin/dev.cmd
rename to bin/dev.cmd
diff --git a/packages/frontier-core/cli/bin/run b/bin/run
similarity index 100%
rename from packages/frontier-core/cli/bin/run
rename to bin/run
diff --git a/packages/frontier-core/cli/bin/run.cmd b/bin/run.cmd
similarity index 100%
rename from packages/frontier-core/cli/bin/run.cmd
rename to bin/run.cmd
diff --git a/commitlint.config.js b/commitlint.config.js
deleted file mode 100644
index 28fe5c5b..00000000
--- a/commitlint.config.js
+++ /dev/null
@@ -1 +0,0 @@
-module.exports = {extends: ['@commitlint/config-conventional']}
diff --git a/docs/.env.example b/docs/.env.example
old mode 100755
new mode 100644
index de6694bf..27b48d1d
--- a/docs/.env.example
+++ b/docs/.env.example
@@ -1,3 +1,3 @@
-# Create one with no scope selected on https://github.com/settings/tokens/new
-# This token is used for fetching the repository releases.
+# Create one with no scope selected on https://github.com/settings/tokens/new
+# This token is used for fetching the repository releases.
GITHUB_TOKEN=
\ No newline at end of file
diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 00000000..7a06d09c
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1,3 @@
+.nuxt/
+node_modules/
+.output/
\ No newline at end of file
diff --git a/docs/.nuxt/app.config.mjs b/docs/.nuxt/app.config.mjs
new file mode 100644
index 00000000..1afd2972
--- /dev/null
+++ b/docs/.nuxt/app.config.mjs
@@ -0,0 +1,11 @@
+
+import { defuFn } from 'C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/defu/dist/defu.mjs'
+
+const inlineConfig = {}
+
+import cfg0 from "C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/app.config.ts"
+import cfg1 from "C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/@nuxt-themes/docus/app.config.ts"
+import cfg2 from "C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/@nuxt-themes/typography/app.config.ts"
+import cfg3 from "C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/@nuxt-themes/elements/app.config.ts"
+
+export default defuFn(cfg0, cfg1, cfg2, cfg3, inlineConfig)
diff --git a/docs/.nuxt/components.d.ts b/docs/.nuxt/components.d.ts
new file mode 100644
index 00000000..98bfe781
--- /dev/null
+++ b/docs/.nuxt/components.d.ts
@@ -0,0 +1,524 @@
+// Generated by components discovery
+declare module 'vue' {
+ export interface GlobalComponents {
+ 'ExampleCard': typeof import("../components/content/Example/ExampleCard.vue")['default']
+ 'ExampleHero': typeof import("../components/content/Example/ExampleHero.vue")['default']
+ 'ExampleIconCard': typeof import("../components/content/Example/ExampleIconCard.vue")['default']
+ 'ExampleMultiselect': typeof import("../components/content/Example/ExampleMultiselect.vue")['default']
+ 'ExampleTheTitle': typeof import("../components/content/Example/ExampleTheTitle.vue")['default']
+ 'HeroAnnouncement': typeof import("../components/content/HeroAnnouncement.vue")['default']
+ 'IconMarkdown': typeof import("../components/content/IconMarkdown.vue")['default']
+ 'Logo': typeof import("../components/content/Logo.vue")['default']
+ 'MyButton': typeof import("../components/content/MyButton.vue")['default']
+ 'PropInspector': typeof import("../components/content/PropInspector.vue")['default']
+ 'ReadMore': typeof import("../components/content/ReadMore.vue")['default']
+ 'AppFooter': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppFooter.vue")['default']
+ 'AppHeader': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeader.vue")['default']
+ 'AppHeaderDialog': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue")['default']
+ 'AppHeaderLogo': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue")['default']
+ 'AppHeaderNavigation': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue")['default']
+ 'AppLayout': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLayout.vue")['default']
+ 'AppLoadingBar': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue")['default']
+ 'AppSearch': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSearch.vue")['default']
+ 'AppSocialIcons': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue")['default']
+ 'DocumentDrivenNotFound': typeof import("../node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue")['default']
+ 'Ellipsis': typeof import("../node_modules/@nuxt-themes/docus/components/app/Ellipsis.vue")['default']
+ 'ThemeSelect': typeof import("../node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue")['default']
+ 'DocsAside': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue")['default']
+ 'DocsAsideTree': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue")['default']
+ 'DocsPageBottom': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue")['default']
+ 'DocsPageLayout': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue")['default']
+ 'DocsPrevNext': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue")['default']
+ 'DocsToc': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue")['default']
+ 'DocsTocLinks': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue")['default']
+ 'EditOnLink': typeof import("../node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue")['default']
+ 'SourceLink': typeof import("../node_modules/@nuxt-themes/docus/components/docs/SourceLink.vue")['default']
+ 'ProseA': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseA.vue")['default']
+ 'ProseBlockquote': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue")['default']
+ 'ProseCode': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCode.vue")['default']
+ 'ProseCodeInline': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue")['default']
+ 'ProseEm': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseEm.vue")['default']
+ 'ProseH1': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH1.vue")['default']
+ 'ProseH2': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH2.vue")['default']
+ 'ProseH3': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH3.vue")['default']
+ 'ProseH4': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH4.vue")['default']
+ 'ProseH5': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH5.vue")['default']
+ 'ProseH6': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH6.vue")['default']
+ 'ProseHr': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseHr.vue")['default']
+ 'ProseImg': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseImg.vue")['default']
+ 'ProseLi': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseLi.vue")['default']
+ 'ProseOl': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseOl.vue")['default']
+ 'ProseP': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseP.vue")['default']
+ 'ProseStrong': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue")['default']
+ 'ProseTable': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTable.vue")['default']
+ 'ProseTbody': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue")['default']
+ 'ProseTd': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTd.vue")['default']
+ 'ProseTh': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTh.vue")['default']
+ 'ProseThead': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseThead.vue")['default']
+ 'ProseTr': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTr.vue")['default']
+ 'ProseUl': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseUl.vue")['default']
+ 'ProseCodeCopyButton': typeof import("../node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue")['default']
+ 'Alert': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Alert.vue")['default']
+ 'Badge': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Badge.vue")['default']
+ 'ButtonLink': typeof import("../node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue")['default']
+ 'Callout': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Callout.vue")['default']
+ 'CodeBlock': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue")['default']
+ 'CodeGroup': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue")['default']
+ 'Container': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Container.vue")['default']
+ 'CopyButton': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue")['default']
+ 'List': typeof import("../node_modules/@nuxt-themes/elements/components/globals/List.vue")['default']
+ 'NuxtImg': typeof import("../node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue")['default']
+ 'Props': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Props.vue")['default']
+ 'Sandbox': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue")['default']
+ 'TabsHeader': typeof import("../node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue")['default']
+ 'Terminal': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Terminal.vue")['default']
+ 'VideoPlayer': typeof import("../node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue")['default']
+ 'IconCodeSandBox': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue")['default']
+ 'IconDocus': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue")['default']
+ 'IconNuxt': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue")['default']
+ 'IconNuxtContent': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue")['default']
+ 'IconNuxtLabs': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue")['default']
+ 'IconNuxtStudio': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue")['default']
+ 'IconStackBlitz': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue")['default']
+ 'IconVueTelescope': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue")['default']
+ 'BlockHero': typeof import("../node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue")['default']
+ 'Card': typeof import("../node_modules/@nuxt-themes/elements/components/landing/Card.vue")['default']
+ 'CardGrid': typeof import("../node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue")['default']
+ 'VoltaBoard': typeof import("../node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue")['default']
+ 'ComponentPlayground': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue")['default']
+ 'ComponentPlaygroundData': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue")['default']
+ 'ComponentPlaygroundProps': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue")['default']
+ 'ComponentPlaygroundSlots': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue")['default']
+ 'ComponentPlaygroundTokens': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue")['default']
+ 'TokensPlayground': typeof import("../node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue")['default']
+ 'ContentDoc': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue")['default']
+ 'ContentList': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentList.vue")['default']
+ 'ContentNavigation': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue")['default']
+ 'ContentQuery': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue")['default']
+ 'ContentRenderer': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue")['default']
+ 'ContentRendererMarkdown': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue")['default']
+ 'ContentSlot': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue")['default']
+ 'DocumentDrivenEmpty': typeof import("../node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue")['default']
+ 'Markdown': typeof import("../node_modules/@nuxt/content/dist/runtime/components/Markdown.vue")['default']
+ 'NuxtWelcome': typeof import("../node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default']
+ 'NuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/layout")['default']
+ 'NuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
+ 'ClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
+ 'DevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
+ 'ServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
+ 'NuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
+ 'NuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
+ 'GithubRepository': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository")['default']
+ 'GithubLink': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink")['default']
+ 'GithubReadme': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme")['default']
+ 'GithubReleases': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases")['default']
+ 'GithubLastRelease': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease")['default']
+ 'GithubRelease': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease")['default']
+ 'GithubContributors': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors")['default']
+ 'GithubFileContributors': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors")['default']
+ 'GithubCommits': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits")['default']
+ 'ColorScheme': typeof import("../node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
+ 'Icon': typeof import("../node_modules/nuxt-icon/dist/runtime/Icon.vue")['default']
+ 'IconCSS': typeof import("../node_modules/nuxt-icon/dist/runtime/IconCSS.vue")['default']
+ 'NuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
+ 'NoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
+ 'Link': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
+ 'Base': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
+ 'Title': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
+ 'Meta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
+ 'Style': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
+ 'Head': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
+ 'Html': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
+ 'Body': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
+ 'LazyExampleCard': typeof import("../components/content/Example/ExampleCard.vue")['default']
+ 'LazyExampleHero': typeof import("../components/content/Example/ExampleHero.vue")['default']
+ 'LazyExampleIconCard': typeof import("../components/content/Example/ExampleIconCard.vue")['default']
+ 'LazyExampleMultiselect': typeof import("../components/content/Example/ExampleMultiselect.vue")['default']
+ 'LazyExampleTheTitle': typeof import("../components/content/Example/ExampleTheTitle.vue")['default']
+ 'LazyHeroAnnouncement': typeof import("../components/content/HeroAnnouncement.vue")['default']
+ 'LazyIconMarkdown': typeof import("../components/content/IconMarkdown.vue")['default']
+ 'LazyLogo': typeof import("../components/content/Logo.vue")['default']
+ 'LazyMyButton': typeof import("../components/content/MyButton.vue")['default']
+ 'LazyPropInspector': typeof import("../components/content/PropInspector.vue")['default']
+ 'LazyReadMore': typeof import("../components/content/ReadMore.vue")['default']
+ 'LazyAppFooter': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppFooter.vue")['default']
+ 'LazyAppHeader': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeader.vue")['default']
+ 'LazyAppHeaderDialog': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue")['default']
+ 'LazyAppHeaderLogo': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue")['default']
+ 'LazyAppHeaderNavigation': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue")['default']
+ 'LazyAppLayout': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLayout.vue")['default']
+ 'LazyAppLoadingBar': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue")['default']
+ 'LazyAppSearch': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSearch.vue")['default']
+ 'LazyAppSocialIcons': typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue")['default']
+ 'LazyDocumentDrivenNotFound': typeof import("../node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue")['default']
+ 'LazyEllipsis': typeof import("../node_modules/@nuxt-themes/docus/components/app/Ellipsis.vue")['default']
+ 'LazyThemeSelect': typeof import("../node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue")['default']
+ 'LazyDocsAside': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue")['default']
+ 'LazyDocsAsideTree': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue")['default']
+ 'LazyDocsPageBottom': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue")['default']
+ 'LazyDocsPageLayout': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue")['default']
+ 'LazyDocsPrevNext': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue")['default']
+ 'LazyDocsToc': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue")['default']
+ 'LazyDocsTocLinks': typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue")['default']
+ 'LazyEditOnLink': typeof import("../node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue")['default']
+ 'LazySourceLink': typeof import("../node_modules/@nuxt-themes/docus/components/docs/SourceLink.vue")['default']
+ 'LazyProseA': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseA.vue")['default']
+ 'LazyProseBlockquote': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue")['default']
+ 'LazyProseCode': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCode.vue")['default']
+ 'LazyProseCodeInline': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue")['default']
+ 'LazyProseEm': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseEm.vue")['default']
+ 'LazyProseH1': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH1.vue")['default']
+ 'LazyProseH2': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH2.vue")['default']
+ 'LazyProseH3': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH3.vue")['default']
+ 'LazyProseH4': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH4.vue")['default']
+ 'LazyProseH5': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH5.vue")['default']
+ 'LazyProseH6': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH6.vue")['default']
+ 'LazyProseHr': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseHr.vue")['default']
+ 'LazyProseImg': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseImg.vue")['default']
+ 'LazyProseLi': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseLi.vue")['default']
+ 'LazyProseOl': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseOl.vue")['default']
+ 'LazyProseP': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseP.vue")['default']
+ 'LazyProseStrong': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue")['default']
+ 'LazyProseTable': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTable.vue")['default']
+ 'LazyProseTbody': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue")['default']
+ 'LazyProseTd': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTd.vue")['default']
+ 'LazyProseTh': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTh.vue")['default']
+ 'LazyProseThead': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseThead.vue")['default']
+ 'LazyProseTr': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTr.vue")['default']
+ 'LazyProseUl': typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseUl.vue")['default']
+ 'LazyProseCodeCopyButton': typeof import("../node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue")['default']
+ 'LazyAlert': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Alert.vue")['default']
+ 'LazyBadge': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Badge.vue")['default']
+ 'LazyButtonLink': typeof import("../node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue")['default']
+ 'LazyCallout': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Callout.vue")['default']
+ 'LazyCodeBlock': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue")['default']
+ 'LazyCodeGroup': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue")['default']
+ 'LazyContainer': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Container.vue")['default']
+ 'LazyCopyButton': typeof import("../node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue")['default']
+ 'LazyList': typeof import("../node_modules/@nuxt-themes/elements/components/globals/List.vue")['default']
+ 'LazyNuxtImg': typeof import("../node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue")['default']
+ 'LazyProps': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Props.vue")['default']
+ 'LazySandbox': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue")['default']
+ 'LazyTabsHeader': typeof import("../node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue")['default']
+ 'LazyTerminal': typeof import("../node_modules/@nuxt-themes/elements/components/globals/Terminal.vue")['default']
+ 'LazyVideoPlayer': typeof import("../node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue")['default']
+ 'LazyIconCodeSandBox': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue")['default']
+ 'LazyIconDocus': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue")['default']
+ 'LazyIconNuxt': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue")['default']
+ 'LazyIconNuxtContent': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue")['default']
+ 'LazyIconNuxtLabs': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue")['default']
+ 'LazyIconNuxtStudio': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue")['default']
+ 'LazyIconStackBlitz': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue")['default']
+ 'LazyIconVueTelescope': typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue")['default']
+ 'LazyBlockHero': typeof import("../node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue")['default']
+ 'LazyCard': typeof import("../node_modules/@nuxt-themes/elements/components/landing/Card.vue")['default']
+ 'LazyCardGrid': typeof import("../node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue")['default']
+ 'LazyVoltaBoard': typeof import("../node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue")['default']
+ 'LazyComponentPlayground': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue")['default']
+ 'LazyComponentPlaygroundData': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue")['default']
+ 'LazyComponentPlaygroundProps': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue")['default']
+ 'LazyComponentPlaygroundSlots': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue")['default']
+ 'LazyComponentPlaygroundTokens': typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue")['default']
+ 'LazyTokensPlayground': typeof import("../node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue")['default']
+ 'LazyContentDoc': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue")['default']
+ 'LazyContentList': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentList.vue")['default']
+ 'LazyContentNavigation': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue")['default']
+ 'LazyContentQuery': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue")['default']
+ 'LazyContentRenderer': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue")['default']
+ 'LazyContentRendererMarkdown': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue")['default']
+ 'LazyContentSlot': typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue")['default']
+ 'LazyDocumentDrivenEmpty': typeof import("../node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue")['default']
+ 'LazyMarkdown': typeof import("../node_modules/@nuxt/content/dist/runtime/components/Markdown.vue")['default']
+ 'LazyNuxtWelcome': typeof import("../node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default']
+ 'LazyNuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/layout")['default']
+ 'LazyNuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
+ 'LazyClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
+ 'LazyDevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
+ 'LazyServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
+ 'LazyNuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
+ 'LazyNuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
+ 'LazyGithubRepository': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository")['default']
+ 'LazyGithubLink': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink")['default']
+ 'LazyGithubReadme': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme")['default']
+ 'LazyGithubReleases': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases")['default']
+ 'LazyGithubLastRelease': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease")['default']
+ 'LazyGithubRelease': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease")['default']
+ 'LazyGithubContributors': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors")['default']
+ 'LazyGithubFileContributors': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors")['default']
+ 'LazyGithubCommits': typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits")['default']
+ 'LazyColorScheme': typeof import("../node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
+ 'LazyIcon': typeof import("../node_modules/nuxt-icon/dist/runtime/Icon.vue")['default']
+ 'LazyIconCSS': typeof import("../node_modules/nuxt-icon/dist/runtime/IconCSS.vue")['default']
+ 'LazyNuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
+ 'LazyNoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
+ 'LazyLink': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
+ 'LazyBase': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
+ 'LazyTitle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
+ 'LazyMeta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
+ 'LazyStyle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
+ 'LazyHead': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
+ 'LazyHtml': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
+ 'LazyBody': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
+ }
+}
+
+export const ExampleCard: typeof import("../components/content/Example/ExampleCard.vue")['default']
+export const ExampleHero: typeof import("../components/content/Example/ExampleHero.vue")['default']
+export const ExampleIconCard: typeof import("../components/content/Example/ExampleIconCard.vue")['default']
+export const ExampleMultiselect: typeof import("../components/content/Example/ExampleMultiselect.vue")['default']
+export const ExampleTheTitle: typeof import("../components/content/Example/ExampleTheTitle.vue")['default']
+export const HeroAnnouncement: typeof import("../components/content/HeroAnnouncement.vue")['default']
+export const IconMarkdown: typeof import("../components/content/IconMarkdown.vue")['default']
+export const Logo: typeof import("../components/content/Logo.vue")['default']
+export const MyButton: typeof import("../components/content/MyButton.vue")['default']
+export const PropInspector: typeof import("../components/content/PropInspector.vue")['default']
+export const ReadMore: typeof import("../components/content/ReadMore.vue")['default']
+export const AppFooter: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppFooter.vue")['default']
+export const AppHeader: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeader.vue")['default']
+export const AppHeaderDialog: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue")['default']
+export const AppHeaderLogo: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue")['default']
+export const AppHeaderNavigation: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue")['default']
+export const AppLayout: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLayout.vue")['default']
+export const AppLoadingBar: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue")['default']
+export const AppSearch: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSearch.vue")['default']
+export const AppSocialIcons: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue")['default']
+export const DocumentDrivenNotFound: typeof import("../node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue")['default']
+export const Ellipsis: typeof import("../node_modules/@nuxt-themes/docus/components/app/Ellipsis.vue")['default']
+export const ThemeSelect: typeof import("../node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue")['default']
+export const DocsAside: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue")['default']
+export const DocsAsideTree: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue")['default']
+export const DocsPageBottom: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue")['default']
+export const DocsPageLayout: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue")['default']
+export const DocsPrevNext: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue")['default']
+export const DocsToc: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue")['default']
+export const DocsTocLinks: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue")['default']
+export const EditOnLink: typeof import("../node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue")['default']
+export const SourceLink: typeof import("../node_modules/@nuxt-themes/docus/components/docs/SourceLink.vue")['default']
+export const ProseA: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseA.vue")['default']
+export const ProseBlockquote: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue")['default']
+export const ProseCode: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCode.vue")['default']
+export const ProseCodeInline: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue")['default']
+export const ProseEm: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseEm.vue")['default']
+export const ProseH1: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH1.vue")['default']
+export const ProseH2: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH2.vue")['default']
+export const ProseH3: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH3.vue")['default']
+export const ProseH4: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH4.vue")['default']
+export const ProseH5: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH5.vue")['default']
+export const ProseH6: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH6.vue")['default']
+export const ProseHr: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseHr.vue")['default']
+export const ProseImg: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseImg.vue")['default']
+export const ProseLi: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseLi.vue")['default']
+export const ProseOl: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseOl.vue")['default']
+export const ProseP: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseP.vue")['default']
+export const ProseStrong: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue")['default']
+export const ProseTable: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTable.vue")['default']
+export const ProseTbody: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue")['default']
+export const ProseTd: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTd.vue")['default']
+export const ProseTh: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTh.vue")['default']
+export const ProseThead: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseThead.vue")['default']
+export const ProseTr: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTr.vue")['default']
+export const ProseUl: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseUl.vue")['default']
+export const ProseCodeCopyButton: typeof import("../node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue")['default']
+export const Alert: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Alert.vue")['default']
+export const Badge: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Badge.vue")['default']
+export const ButtonLink: typeof import("../node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue")['default']
+export const Callout: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Callout.vue")['default']
+export const CodeBlock: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue")['default']
+export const CodeGroup: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue")['default']
+export const Container: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Container.vue")['default']
+export const CopyButton: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue")['default']
+export const List: typeof import("../node_modules/@nuxt-themes/elements/components/globals/List.vue")['default']
+export const NuxtImg: typeof import("../node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue")['default']
+export const Props: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Props.vue")['default']
+export const Sandbox: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue")['default']
+export const TabsHeader: typeof import("../node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue")['default']
+export const Terminal: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Terminal.vue")['default']
+export const VideoPlayer: typeof import("../node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue")['default']
+export const IconCodeSandBox: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue")['default']
+export const IconDocus: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue")['default']
+export const IconNuxt: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue")['default']
+export const IconNuxtContent: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue")['default']
+export const IconNuxtLabs: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue")['default']
+export const IconNuxtStudio: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue")['default']
+export const IconStackBlitz: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue")['default']
+export const IconVueTelescope: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue")['default']
+export const BlockHero: typeof import("../node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue")['default']
+export const Card: typeof import("../node_modules/@nuxt-themes/elements/components/landing/Card.vue")['default']
+export const CardGrid: typeof import("../node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue")['default']
+export const VoltaBoard: typeof import("../node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue")['default']
+export const ComponentPlayground: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue")['default']
+export const ComponentPlaygroundData: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue")['default']
+export const ComponentPlaygroundProps: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue")['default']
+export const ComponentPlaygroundSlots: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue")['default']
+export const ComponentPlaygroundTokens: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue")['default']
+export const TokensPlayground: typeof import("../node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue")['default']
+export const ContentDoc: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue")['default']
+export const ContentList: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentList.vue")['default']
+export const ContentNavigation: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue")['default']
+export const ContentQuery: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue")['default']
+export const ContentRenderer: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue")['default']
+export const ContentRendererMarkdown: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue")['default']
+export const ContentSlot: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue")['default']
+export const DocumentDrivenEmpty: typeof import("../node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue")['default']
+export const Markdown: typeof import("../node_modules/@nuxt/content/dist/runtime/components/Markdown.vue")['default']
+export const NuxtWelcome: typeof import("../node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default']
+export const NuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/layout")['default']
+export const NuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
+export const ClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
+export const DevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
+export const ServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
+export const NuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
+export const NuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
+export const GithubRepository: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository")['default']
+export const GithubLink: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink")['default']
+export const GithubReadme: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme")['default']
+export const GithubReleases: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases")['default']
+export const GithubLastRelease: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease")['default']
+export const GithubRelease: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease")['default']
+export const GithubContributors: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors")['default']
+export const GithubFileContributors: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors")['default']
+export const GithubCommits: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits")['default']
+export const ColorScheme: typeof import("../node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
+export const Icon: typeof import("../node_modules/nuxt-icon/dist/runtime/Icon.vue")['default']
+export const IconCSS: typeof import("../node_modules/nuxt-icon/dist/runtime/IconCSS.vue")['default']
+export const NuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
+export const NoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
+export const Link: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
+export const Base: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
+export const Title: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
+export const Meta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
+export const Style: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
+export const Head: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
+export const Html: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
+export const Body: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
+export const LazyExampleCard: typeof import("../components/content/Example/ExampleCard.vue")['default']
+export const LazyExampleHero: typeof import("../components/content/Example/ExampleHero.vue")['default']
+export const LazyExampleIconCard: typeof import("../components/content/Example/ExampleIconCard.vue")['default']
+export const LazyExampleMultiselect: typeof import("../components/content/Example/ExampleMultiselect.vue")['default']
+export const LazyExampleTheTitle: typeof import("../components/content/Example/ExampleTheTitle.vue")['default']
+export const LazyHeroAnnouncement: typeof import("../components/content/HeroAnnouncement.vue")['default']
+export const LazyIconMarkdown: typeof import("../components/content/IconMarkdown.vue")['default']
+export const LazyLogo: typeof import("../components/content/Logo.vue")['default']
+export const LazyMyButton: typeof import("../components/content/MyButton.vue")['default']
+export const LazyPropInspector: typeof import("../components/content/PropInspector.vue")['default']
+export const LazyReadMore: typeof import("../components/content/ReadMore.vue")['default']
+export const LazyAppFooter: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppFooter.vue")['default']
+export const LazyAppHeader: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeader.vue")['default']
+export const LazyAppHeaderDialog: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue")['default']
+export const LazyAppHeaderLogo: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue")['default']
+export const LazyAppHeaderNavigation: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue")['default']
+export const LazyAppLayout: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLayout.vue")['default']
+export const LazyAppLoadingBar: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue")['default']
+export const LazyAppSearch: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSearch.vue")['default']
+export const LazyAppSocialIcons: typeof import("../node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue")['default']
+export const LazyDocumentDrivenNotFound: typeof import("../node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue")['default']
+export const LazyEllipsis: typeof import("../node_modules/@nuxt-themes/docus/components/app/Ellipsis.vue")['default']
+export const LazyThemeSelect: typeof import("../node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue")['default']
+export const LazyDocsAside: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue")['default']
+export const LazyDocsAsideTree: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue")['default']
+export const LazyDocsPageBottom: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue")['default']
+export const LazyDocsPageLayout: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue")['default']
+export const LazyDocsPrevNext: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue")['default']
+export const LazyDocsToc: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue")['default']
+export const LazyDocsTocLinks: typeof import("../node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue")['default']
+export const LazyEditOnLink: typeof import("../node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue")['default']
+export const LazySourceLink: typeof import("../node_modules/@nuxt-themes/docus/components/docs/SourceLink.vue")['default']
+export const LazyProseA: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseA.vue")['default']
+export const LazyProseBlockquote: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue")['default']
+export const LazyProseCode: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCode.vue")['default']
+export const LazyProseCodeInline: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue")['default']
+export const LazyProseEm: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseEm.vue")['default']
+export const LazyProseH1: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH1.vue")['default']
+export const LazyProseH2: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH2.vue")['default']
+export const LazyProseH3: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH3.vue")['default']
+export const LazyProseH4: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH4.vue")['default']
+export const LazyProseH5: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH5.vue")['default']
+export const LazyProseH6: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseH6.vue")['default']
+export const LazyProseHr: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseHr.vue")['default']
+export const LazyProseImg: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseImg.vue")['default']
+export const LazyProseLi: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseLi.vue")['default']
+export const LazyProseOl: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseOl.vue")['default']
+export const LazyProseP: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseP.vue")['default']
+export const LazyProseStrong: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue")['default']
+export const LazyProseTable: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTable.vue")['default']
+export const LazyProseTbody: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue")['default']
+export const LazyProseTd: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTd.vue")['default']
+export const LazyProseTh: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTh.vue")['default']
+export const LazyProseThead: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseThead.vue")['default']
+export const LazyProseTr: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseTr.vue")['default']
+export const LazyProseUl: typeof import("../node_modules/@nuxt-themes/typography/components/global/ProseUl.vue")['default']
+export const LazyProseCodeCopyButton: typeof import("../node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue")['default']
+export const LazyAlert: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Alert.vue")['default']
+export const LazyBadge: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Badge.vue")['default']
+export const LazyButtonLink: typeof import("../node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue")['default']
+export const LazyCallout: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Callout.vue")['default']
+export const LazyCodeBlock: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue")['default']
+export const LazyCodeGroup: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue")['default']
+export const LazyContainer: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Container.vue")['default']
+export const LazyCopyButton: typeof import("../node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue")['default']
+export const LazyList: typeof import("../node_modules/@nuxt-themes/elements/components/globals/List.vue")['default']
+export const LazyNuxtImg: typeof import("../node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue")['default']
+export const LazyProps: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Props.vue")['default']
+export const LazySandbox: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue")['default']
+export const LazyTabsHeader: typeof import("../node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue")['default']
+export const LazyTerminal: typeof import("../node_modules/@nuxt-themes/elements/components/globals/Terminal.vue")['default']
+export const LazyVideoPlayer: typeof import("../node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue")['default']
+export const LazyIconCodeSandBox: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue")['default']
+export const LazyIconDocus: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue")['default']
+export const LazyIconNuxt: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue")['default']
+export const LazyIconNuxtContent: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue")['default']
+export const LazyIconNuxtLabs: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue")['default']
+export const LazyIconNuxtStudio: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue")['default']
+export const LazyIconStackBlitz: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue")['default']
+export const LazyIconVueTelescope: typeof import("../node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue")['default']
+export const LazyBlockHero: typeof import("../node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue")['default']
+export const LazyCard: typeof import("../node_modules/@nuxt-themes/elements/components/landing/Card.vue")['default']
+export const LazyCardGrid: typeof import("../node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue")['default']
+export const LazyVoltaBoard: typeof import("../node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue")['default']
+export const LazyComponentPlayground: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue")['default']
+export const LazyComponentPlaygroundData: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue")['default']
+export const LazyComponentPlaygroundProps: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue")['default']
+export const LazyComponentPlaygroundSlots: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue")['default']
+export const LazyComponentPlaygroundTokens: typeof import("../node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue")['default']
+export const LazyTokensPlayground: typeof import("../node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue")['default']
+export const LazyContentDoc: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue")['default']
+export const LazyContentList: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentList.vue")['default']
+export const LazyContentNavigation: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue")['default']
+export const LazyContentQuery: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue")['default']
+export const LazyContentRenderer: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue")['default']
+export const LazyContentRendererMarkdown: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue")['default']
+export const LazyContentSlot: typeof import("../node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue")['default']
+export const LazyDocumentDrivenEmpty: typeof import("../node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue")['default']
+export const LazyMarkdown: typeof import("../node_modules/@nuxt/content/dist/runtime/components/Markdown.vue")['default']
+export const LazyNuxtWelcome: typeof import("../node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default']
+export const LazyNuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/layout")['default']
+export const LazyNuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
+export const LazyClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
+export const LazyDevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
+export const LazyServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
+export const LazyNuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
+export const LazyNuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
+export const LazyGithubRepository: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository")['default']
+export const LazyGithubLink: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink")['default']
+export const LazyGithubReadme: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme")['default']
+export const LazyGithubReleases: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases")['default']
+export const LazyGithubLastRelease: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease")['default']
+export const LazyGithubRelease: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease")['default']
+export const LazyGithubContributors: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors")['default']
+export const LazyGithubFileContributors: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors")['default']
+export const LazyGithubCommits: typeof import("../node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits")['default']
+export const LazyColorScheme: typeof import("../node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
+export const LazyIcon: typeof import("../node_modules/nuxt-icon/dist/runtime/Icon.vue")['default']
+export const LazyIconCSS: typeof import("../node_modules/nuxt-icon/dist/runtime/IconCSS.vue")['default']
+export const LazyNuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
+export const LazyNoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
+export const LazyLink: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
+export const LazyBase: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
+export const LazyTitle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
+export const LazyMeta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
+export const LazyStyle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
+export const LazyHead: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
+export const LazyHtml: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
+export const LazyBody: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
+
+export const componentNames: string[]
diff --git a/docs/.nuxt/content-cache/content-index.json b/docs/.nuxt/content-cache/content-index.json
new file mode 100644
index 00000000..904e2a4f
--- /dev/null
+++ b/docs/.nuxt/content-cache/content-index.json
@@ -0,0 +1 @@
+{"/":["content:1.index.md"],"/_partials/hello-world":["content:_partials:hello-world.md"],"/frontier/_dir":["content:2.frontier:_dir.yml"],"/frontier/getting-started/installation":["content:2.frontier:2.getting-started:1.installation.md"],"/frontier/getting-started/usage":["content:2.frontier:2.getting-started:1.usage.md"],"/frontier/getting-started/_dir":["content:2.frontier:2.getting-started:_dir.yml"],"/frontier/introduction/whats-frontier":["content:2.frontier:1.introduction:1.whats-frontier.md"],"/frontier/introduction/_2.content-directory":["content:2.frontier:1.introduction:_2.content-directory.md"],"/frontier/introduction/_3.philosophy":["content:2.frontier:1.introduction:_3.philosophy.md"],"/frontier/introduction/_dir":["content:2.frontier:1.introduction:_dir.yml"],"/frontier/development/overview":["content:2.frontier:3.development:1.overview.md"],"/frontier/development/building":["content:2.frontier:3.development:2.building.md"],"/frontier/development/testing":["content:2.frontier:3.development:3.testing.md"],"/frontier/development/contributing":["content:2.frontier:3.development:4.contributing.md"],"/frontier/development/_dir":["content:2.frontier:3.development:_dir.yml"],"/frontier/namespaces/vue":["content:2.frontier:4.namespaces:1.vue.md"],"/frontier/namespaces/mobile":["content:2.frontier:4.namespaces:2.mobile.md"],"/frontier/namespaces/dotnet":["content:2.frontier:4.namespaces:3.dotnet.md"],"/frontier/namespaces/spectre":["content:2.frontier:4.namespaces:4.spectre.md"],"/frontier/namespaces/_dir":["content:2.frontier:4.namespaces:_dir.yml"],"/frontier/_5.libraries/typekit":["content:2.frontier:_5.libraries:1.typekit.md"],"/frontier/_5.libraries/standard-library":["content:2.frontier:_5.libraries:2.standard-library.md"],"/frontier/_5.libraries/_dir":["content:2.frontier:_5.libraries:_dir.yml"],"/frontier/_6.templates/dotnet":["content:2.frontier:_6.templates:1.dotNet.md"],"/frontier/_6.templates/typescript":["content:2.frontier:_6.templates:2.typescript.md"],"/frontier/_6.templates/nuxt":["content:2.frontier:_6.templates:3.nuxt.md"],"/frontier/_6.templates/_dir":["content:2.frontier:_6.templates:_dir.yml"],"/vue/_dir":["content:3.Vue:_dir.yml"],"/vue/getting-started/installation":["content:3.Vue:2.getting-started:1.installation.md"],"/vue/getting-started/usage":["content:3.Vue:2.getting-started:2.usage.md"],"/vue/getting-started/next-steps":["content:3.Vue:2.getting-started:3.next-steps.md"],"/vue/getting-started/_dir":["content:3.Vue:2.getting-started:_dir.yml"],"/vue/introduction/whats-frontier-vue":["content:3.Vue:1.introduction:1.whats-frontier-vue.md"],"/vue/introduction/_dir":["content:3.Vue:1.introduction:_dir.yml"],"/vue/development/template":["content:3.Vue:4.development:1.template.md"],"/vue/development/schema":["content:3.Vue:4.development:2.schema.md"],"/vue/development/_dir":["content:3.Vue:4.development:_dir.yml"],"/vue/cli-commands/usage":["content:3.Vue:3.cli-commands:1.usage.md"],"/vue/cli-commands/_dir":["content:3.Vue:3.cli-commands:_dir.yml"],"/vue/features/overview":["content:3.Vue:5.features:0.overview.md"],"/vue/features/pages":["content:3.Vue:5.features:1.pages.md"],"/vue/features/theming":["content:3.Vue:5.features:10.theming.md"],"/vue/features/components":["content:3.Vue:5.features:2.components.md"],"/vue/features/services":["content:3.Vue:5.features:3.services.md"],"/vue/features/layouts":["content:3.Vue:5.features:4.layouts.md"],"/vue/features/stores":["content:3.Vue:5.features:5.stores.md"],"/vue/features/localization":["content:3.Vue:5.features:6.localization.md"],"/vue/features/bundle-analysis":["content:3.Vue:5.features:7.bundle-analysis.md"],"/vue/features/routing":["content:3.Vue:5.features:8.routing.md"],"/vue/features/sitemap":["content:3.Vue:5.features:9.sitemap.md"],"/vue/features/_dir":["content:3.Vue:5.features:_dir.yml"],"/spectre/_dir":["content:5.spectre:_dir.yml"],"/spectre/getting-started/introduction":["content:5.spectre:1.getting-started:1.introduction.md"],"/spectre/getting-started/_dir":["content:5.spectre:1.getting-started:_dir.yml"],"/mobile/_dir":["content:4.mobile:_dir.yml"],"/mobile/introduction/whats-frontier-mobile":["content:4.mobile:1.introduction:1.whats-frontier-mobile.md"],"/mobile/introduction/_dir":["content:4.mobile:1.introduction:_dir.yml"],"/mobile/getting-started/installation":["content:4.mobile:2.getting-started:1.installation.md"],"/mobile/getting-started/usage":["content:4.mobile:2.getting-started:2.usage.md"],"/mobile/getting-started/next-steps":["content:4.mobile:2.getting-started:3.next-steps.md"],"/mobile/getting-started/_dir":["content:4.mobile:2.getting-started:_dir.yml"],"/mobile/cli-commands/usage":["content:4.mobile:3.cli-commands:1.usage.md"],"/mobile/cli-commands/_dir":["content:4.mobile:3.cli-commands:_dir.yml"],"/mobile/features/overview":["content:4.mobile:4.features:0.overview.md"],"/mobile/features/screens":["content:4.mobile:4.features:1.screens.md"],"/mobile/features/components":["content:4.mobile:4.features:2.components.md"],"/mobile/features/services":["content:4.mobile:4.features:3.services.md"],"/mobile/features/navigation":["content:4.mobile:4.features:4.navigation.md"],"/mobile/features/stores":["content:4.mobile:4.features:5.stores.md"],"/mobile/features/_dir":["content:4.mobile:4.features:_dir.yml"],"/mobile/deployment/deployment":["content:4.mobile:6.deployment:1.deployment.md"],"/mobile/deployment/_dir":["content:4.mobile:6.deployment:_dir.yml"],"/mobile/testing/testing":["content:4.mobile:5.testing:1.testing.md"],"/mobile/testing/_dir":["content:4.mobile:5.testing:_dir.yml"],"/dotnet/_dir":["content:5.dotnet:_dir.yml"],"/dotnet/introduction/whats-frontier-mobile":["content:5.dotnet:1.introduction:1.whats-frontier-mobile.md"],"/dotnet/introduction/_dir":["content:5.dotnet:1.introduction:_dir.yml"],"/dotnet/cli-commands/usage":["content:5.dotnet:3.cli-commands:1.usage.md"],"/dotnet/cli-commands/_dir":["content:5.dotnet:3.cli-commands:_dir.yml"],"/dotnet/getting-started/installation":["content:5.dotnet:2.getting-started:1.installation.md"],"/dotnet/getting-started/usage":["content:5.dotnet:2.getting-started:2.usage.md"],"/dotnet/getting-started/next-steps":["content:5.dotnet:2.getting-started:3.next-steps.md"],"/dotnet/getting-started/_dir":["content:5.dotnet:2.getting-started:_dir.yml"],"/dotnet/features/overview":["content:5.dotnet:4.features:0.overview.md"],"/dotnet/features/screens":["content:5.dotnet:4.features:1.screens.md"],"/dotnet/features/components":["content:5.dotnet:4.features:2.components.md"],"/dotnet/features/services":["content:5.dotnet:4.features:3.services.md"],"/dotnet/features/navigation":["content:5.dotnet:4.features:4.navigation.md"],"/dotnet/features/stores":["content:5.dotnet:4.features:5.stores.md"],"/dotnet/features/_dir":["content:5.dotnet:4.features:_dir.yml"],"/_7.iac/_dir":["content:_7.IAC:_dir.yml"],"/_7.iac/getting-started/introduction":["content:_7.IAC:1.getting-started:2.introduction.md"],"/_7.iac/getting-started/_dir":["content:_7.IAC:1.getting-started:_dir.yml"],"/_6.design/_dir":["content:_6.design:_dir.yml"],"/_6.design/getting-started/introduction":["content:_6.design:1.getting-started:2.introduction.md"],"/_6.design/getting-started/_dir":["content:_6.design:1.getting-started:_dir.yml"]}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/1.index.md b/docs/.nuxt/content-cache/parsed/content/1.index.md
new file mode 100644
index 00000000..79e7fd3a
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/1.index.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontier","description":"The file-based CMS for your Nuxt application, powered by Markdown and Vue components.","navigation":false,"layout":"page","body":{"type":"root","children":[{"type":"element","tag":"block-hero","props":{":cta":"[\"Get Started\",\"/frontier/introduction/whats-frontier\"]",":secondary":"[\"Star on GitHub\",\"https://github.com/realdecoy/frontier\"]","snippet":"npm i -g @realdecoy/frontier"},"children":[{"type":"element","tag":"template","props":{"v-slot:announce":""},"children":[{"type":"element","tag":"hero-announcement","props":{"label":"Discover the all new ","to":"/frontier/introduction/whats-frontier"},"children":[]}]},{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier - by Realdecoy"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A full service toolset for building "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"web"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"mobile"}]},{"type":"text","value":" software products. With "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"templates"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"libraries"}]},{"type":"text","value":", Frontier delivers a designed development experience to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"10x"}]},{"type":"text","value":" your software development."}]}]},{"type":"element","tag":"template","props":{"v-slot:support":""},"children":[]}]},{"type":"element","tag":"card-grid","props":{},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Powerful Features"}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"CLI"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Take advantage of the Frontier CLI powering tools for: Vue, Mobile, and Spectre."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Standard Library"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage battle-hardened code from the standard library."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"TypeKit"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use Common type definition and data structures from the typekit."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Vue"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A beautifully structured vue template and cli for authoring frontend applications."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Spectre"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Test your applications to the moon with the Spectre testing suite."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Mobile"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Build Mobile applications with ease with structures React Native foundation."}]}]}]},{"type":"element","tag":"template","props":{"v-slot:root":""},"children":[{"type":"element","tag":"ellipsis","props":{},"children":[]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},"hash":"JXmSboHq96"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/1.whats-frontier.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/1.whats-frontier.md
new file mode 100644
index 00000000..f6ff3f22
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/1.whats-frontier.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"Frontier brings together engineering standards across disciplines for ease of use, promoting consistent software development.\r\nContributions are welcome! You can help us by reporting or fixing bugs and giving us feedback on new/existing features.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier brings together engineering standards across disciplines for ease of use, promoting consistent software development.\r\nContributions are welcome! You can help us by reporting or fixing bugs and giving us feedback on new/existing features."}]},{"type":"element","tag":"h2","props":{"id":"about"},"children":[{"type":"text","value":"About"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier offers a set of standard libraries and typing kits that can be use across engineering projects to allow for more consistency software development. With frontier, a set of plugins are available for use by developers which can be used to easily generate base project files contributing to a faster development process."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"about","depth":2,"text":"About"}]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},"hash":"P8MKEZHZ8t"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_2.content-directory.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_2.content-directory.md
new file mode 100644
index 00000000..8562af5f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_2.content-directory.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/introduction/_2.content-directory","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:_2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/_2.content-directory.md","_extension":"md"},"hash":"nZDuEmI0yr"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_3.philosophy.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_3.philosophy.md
new file mode 100644
index 00000000..9547f504
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_3.philosophy.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/introduction/_3.philosophy","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:_3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/_3.philosophy.md","_extension":"md"},"hash":"rGnfUhBXMD"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_dir.yml
new file mode 100644
index 00000000..5c8d8722
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/1.introduction/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:2.frontier:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/1.introduction/_dir.yml","_extension":"yml"},"hash":"8OGNGk9U9B"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.installation.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.installation.md
new file mode 100644
index 00000000..603539c5
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.installation.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/getting-started/installation","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Installation","description":"For global installation","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For global installation"}]},{"type":"element","tag":"code","props":{"code":"npm install --global @realdecoy/frontier\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0b1e2"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52ddb1"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-acc981"},"children":[{"type":"text","value":"--global"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52ddb1"},"children":[{"type":"text","value":"@realdecoy/frontier"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"alternatively, use "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"npx"}]},{"type":"text","value":" to execute the binaries remotely"}]},{"type":"element","tag":"code","props":{"code":"npx @realdecoy/frontier \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0b1e2"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52ddb1"},"children":[{"type":"text","value":"@realdecoy/frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-51eeeb"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52ddb1"},"children":[{"type":"text","value":"namespac"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-51eeeb"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-51eeeb"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52ddb1"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-120d1b"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-51eeeb"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-51eeeb{color:#CF222E}\n.ct-acc981{color:#0550AE}\n.ct-52ddb1{color:#0A3069}\n.ct-120d1b{color:#24292F}\n.ct-a0b1e2{color:#953800}\n.dark .ct-a0b1e2{color:#FFA657}\n.dark .ct-120d1b{color:#C9D1D9}\n.dark .ct-52ddb1{color:#A5D6FF}\n.dark .ct-acc981{color:#79C0FF}\n.dark .ct-51eeeb{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.getting-started:1.installation.md","_source":"content","_file":"2.frontier/2.getting-started/1.installation.md","_extension":"md"},"hash":"mCfWc79feX"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.usage.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.usage.md
new file mode 100644
index 00000000..15b258c6
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/1.usage.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/getting-started/usage","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e0b966"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-6eecd0"},"children":[{"type":"text","value":"namespac"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-6eecd0"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"namespaces are optional if running frontier commands in an existing frontier project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The help menu can be accessed with the commands:"}]},{"type":"element","tag":"code","props":{"code":"frontier --help\r\nfrontier --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e0b966"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1b485d"},"children":[{"type":"text","value":"--help"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e0b966"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-6eecd0"},"children":[{"type":"text","value":"namespac"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-927d35"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1b485d"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of frontier can be retrieved with the command:"}]},{"type":"element","tag":"code","props":{"code":"frontier --version\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e0b966"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e64e12"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1b485d"},"children":[{"type":"text","value":"--version"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"Usage:\r\n frontier \r\n\r\nNamespaces:\r\n dotnet - Dotnet API Scaffolding\r\n mobile - React Native Scaffolding\r\n vue - Vue.js Scaffolding\r\n \r\nOptions:\r\n --help - Show help information\r\n --version - Show cli version\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"Usage:\r\n frontier \r\n\r\nNamespaces:\r\n dotnet - Dotnet API Scaffolding\r\n mobile - React Native Scaffolding\r\n vue - Vue.js Scaffolding\r\n \r\nOptions:\r\n --help - Show help information\r\n --version - Show cli version"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-1b485d{color:#0550AE}\n.ct-6eecd0{color:#0A3069}\n.ct-927d35{color:#CF222E}\n.ct-e64e12{color:#24292F}\n.ct-e0b966{color:#953800}\n.dark .ct-e0b966{color:#FFA657}\n.dark .ct-e64e12{color:#C9D1D9}\n.dark .ct-927d35{color:#FF7B72}\n.dark .ct-6eecd0{color:#A5D6FF}\n.dark .ct-1b485d{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"options","depth":2,"text":"Options"}]}},"_type":"markdown","_id":"content:2.frontier:2.getting-started:1.usage.md","_source":"content","_file":"2.frontier/2.getting-started/1.usage.md","_extension":"md"},"hash":"joM0QhvF4q"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/2.development.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/2.development.md
new file mode 100644
index 00000000..5bc5d221
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/2.development.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/getting-started/development","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]},{"type":"element","tag":"h3","props":{"id":"prerequisites-recommendations"},"children":[{"type":"text","value":"Prerequisites & Recommendations"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"text","value":"Name"}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"text","value":"Description"}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"text","value":"More Information"}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"node"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"runtime"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"version 19.8.1"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"dependency management"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"version 1.22.19"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"vscode"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"code editor"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"version 1.77.1"}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"clone-the-project"},"children":[{"type":"text","value":"Clone the project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/development","rel":["nofollow"]},"children":[{"type":"text","value":"Frontier - development"}]}]},{"type":"element","tag":"h3","props":{"id":"install-dependencies"},"children":[{"type":"text","value":"Install Dependencies"}]},{"type":"element","tag":"code","props":{"code":"yarn install\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"install"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"or"}]},{"type":"element","tag":"code","props":{"code":"npm install\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"execute-cli-commands"},"children":[{"type":"text","value":"Execute CLI commands"}]},{"type":"element","tag":"code","props":{"code":"./bin/dev \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a32842"},"children":[{"type":"text","value":"."}]},{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"/bin/dev"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-01c8b7"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"namespac"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-01c8b7"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-01c8b7"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-01c8b7"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"e.g."}]},{"type":"element","tag":"code","props":{"code":"./bin/dev vue create-project\r\n? Enter a project name: » my-cool-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a32842"},"children":[{"type":"text","value":"."}]},{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"/bin/dev"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-01c8b7"},"children":[{"type":"text","value":"?"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" Enter a project name: » my-cool-project"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"building"},"children":[{"type":"text","value":"Building"}]},{"type":"element","tag":"h4","props":{"id":"build"},"children":[{"type":"text","value":"Build"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The build command rebuilds all packages and notify the user of the success of the packages being rebuilt.\r\nTo build the packages of frontier, run the command:"}]},{"type":"element","tag":"code","props":{"code":"yarn run build\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"build"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"or"}]},{"type":"element","tag":"code","props":{"code":"npm run build\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"build"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"rebuild"},"children":[{"type":"text","value":"Rebuild"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Rebuilding the frontier packages automatically reconstructs the packages forgetting about any previous compliation of them.\r\nTo rebuild the frontier packages, run the command:"}]},{"type":"element","tag":"code","props":{"code":"yarn run rebuild\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"rebuild"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"or"}]},{"type":"element","tag":"code","props":{"code":"npm run rebuild\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"rebuild"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"creating-a-frontier-namespace"},"children":[{"type":"text","value":"Creating a frontier namespace"}]},{"type":"element","tag":"h4","props":{"id":"adam"},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/development/commands/adam","rel":["nofollow"]},"children":[{"type":"text","value":"Adam"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To support the creation of new frointer-based namespaces a template, "},{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/development/src/commands/adam","rel":["nofollow"]},"children":[{"type":"text","value":"Adam"}]},{"type":"text","value":", has been provided to allow for easier development. This template provides the basic structure needed to develop a simple frontier-based namespace. It also provides sample commands and tests to get you started."}]},{"type":"element","tag":"h3","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h3","props":{"id":"run-unit-test-suite"},"children":[{"type":"text","value":"Run Unit Test Suite"}]},{"type":"element","tag":"code","props":{"code":"yarn run test\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"test"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"or"}]},{"type":"element","tag":"code","props":{"code":"npm run test\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0959f9"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-9a3554"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-433b54"},"children":[{"type":"text","value":"test"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"creating-tests"},"children":[{"type":"text","value":"Creating Tests"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":".test.ts"}]},{"type":"text","value":" file in the respective folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"chai"}]},{"type":"text","value":" assertion syntax, describe your unit test cases"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"visit the oclif "},{"type":"element","tag":"a","props":{"href":"https://oclif.io/docs/testing","rel":["nofollow"]},"children":[{"type":"text","value":"testing documentation"}]},{"type":"text","value":" to see more details"}]}]},{"type":"element","tag":"h3","props":{"id":"contribution-instructions"},"children":[{"type":"text","value":"Contribution Instructions"}]},{"type":"element","tag":"h4","props":{"id":"testing-requirements"},"children":[{"type":"text","value":"Testing Requirements"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All code contributions made to this repository be properly tested. For testing the testing framework Jest is used. All test files must be writen with the extension \".spec.ts\", to maintain the consistency of this project."}]},{"type":"element","tag":"h4","props":{"id":"github-commits"},"children":[{"type":"text","value":"GitHub Commits"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commits maded to this repository be rewritten according to the "},{"type":"element","tag":"a","props":{"href":"https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13","rel":["nofollow"]},"children":[{"type":"text","value":"Conventional Commit Messages Standard"}]},{"type":"text","value":". This is to ensure that consistency is maintained throughout the repository."}]},{"type":"element","tag":"h4","props":{"id":"pull-request"},"children":[{"type":"text","value":"Pull Request"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When creating a pull request ensure that the request is well documented and the changes made to the repository have been properly noted. Ensure to link the issue number/s that the pull request satisfies."}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-01c8b7{color:#CF222E}\n.ct-a32842{color:#0550AE}\n.ct-433b54{color:#0A3069}\n.ct-9a3554{color:#24292F}\n.ct-0959f9{color:#953800}\n.dark .ct-0959f9{color:#FFA657}\n.dark .ct-9a3554{color:#C9D1D9}\n.dark .ct-433b54{color:#A5D6FF}\n.dark .ct-a32842{color:#79C0FF}\n.dark .ct-01c8b7{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"prerequisites-recommendations","depth":3,"text":"Prerequisites & Recommendations"},{"id":"clone-the-project","depth":3,"text":"Clone the project"},{"id":"install-dependencies","depth":3,"text":"Install Dependencies"},{"id":"execute-cli-commands","depth":3,"text":"Execute CLI commands"},{"id":"building","depth":3,"text":"Building"},{"id":"creating-a-frontier-namespace","depth":3,"text":"Creating a frontier namespace"},{"id":"testing","depth":3,"text":"Testing"},{"id":"run-unit-test-suite","depth":3,"text":"Run Unit Test Suite"},{"id":"creating-tests","depth":3,"text":"Creating Tests"},{"id":"contribution-instructions","depth":3,"text":"Contribution Instructions"}]}},"_type":"markdown","_id":"content:2.frontier:2.getting-started:2.development.md","_source":"content","_file":"2.frontier/2.getting-started/2.development.md","_extension":"md"},"hash":"LA3KosknmI"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/_dir.yml
new file mode 100644
index 00000000..c93ccb6e
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/2.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:2.frontier:2.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/2.getting-started/_dir.yml","_extension":"yml"},"hash":"U2iT2QKcGv"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/1.vue.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/1.vue.md
new file mode 100644
index 00000000..75bc47af
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/1.vue.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/namespaces/vue","_dir":"namespaces","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Vue","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"vue"},"children":[{"type":"text","value":"Vue"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.namespaces:1.vue.md","_source":"content","_file":"2.frontier/4.namespaces/1.vue.md","_extension":"md"},"hash":"mpmpG1G0IK"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.mobile.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.mobile.md
new file mode 100644
index 00000000..0b0261f9
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.mobile.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/namespaces/mobile","_dir":"namespaces","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.namespaces:2.mobile.md","_source":"content","_file":"2.frontier/4.namespaces/2.mobile.md","_extension":"md"},"hash":"5VATw0FZRu"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.quality.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.quality.md
new file mode 100644
index 00000000..454753b3
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/2.quality.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/namespaces/quality","_dir":"namespaces","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.namespaces:2.quality.md","_source":"content","_file":"2.frontier/4.namespaces/2.quality.md","_extension":"md"},"hash":"hWhsm3yWYL"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/3.dotnet.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/3.dotnet.md
new file mode 100644
index 00000000..519bc321
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/3.dotnet.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/namespaces/dotnet","_dir":"namespaces","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Dotnet","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"dotnet"},"children":[{"type":"text","value":"Dotnet"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.namespaces:3.dotnet.md","_source":"content","_file":"2.frontier/4.namespaces/3.dotnet.md","_extension":"md"},"hash":"t9YUsv46lw"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/_dir.yml
new file mode 100644
index 00000000..0403bbd2
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/4.namespaces/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/namespaces/_dir","_dir":"namespaces","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:4.namespaces:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/4.namespaces/_dir.yml","_extension":"yml"},"hash":"Afs7FnC9yF"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/1.typekit.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/1.typekit.md
new file mode 100644
index 00000000..1c15fd37
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/1.typekit.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_5.libraries/typekit","_dir":"_5.libraries","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:_5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/_5.libraries/1.typekit.md","_extension":"md"},"hash":"A1ET3rqwLf"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/2.standard-library.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/2.standard-library.md
new file mode 100644
index 00000000..fc3f6905
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/2.standard-library.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_5.libraries/standard-library","_dir":"_5.libraries","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:_5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/_5.libraries/2.standard-library.md","_extension":"md"},"hash":"sNtNylXQYF"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/_dir.yml
new file mode 100644
index 00000000..5f0c97f9
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_5.libraries/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_5.libraries/_dir","_dir":"_5.libraries","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:_5.libraries:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_5.libraries/_dir.yml","_extension":"yml"},"hash":"5do8ni9gnT"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/1.dotNet.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/1.dotNet.md
new file mode 100644
index 00000000..b2f344cf
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/1.dotNet.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_6.templates/dotnet","_dir":"_6.templates","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:_6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/_6.templates/1.dotNet.md","_extension":"md"},"hash":"9OkTCDTLUZ"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/2.typescript.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/2.typescript.md
new file mode 100644
index 00000000..574c0737
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/2.typescript.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_6.templates/typescript","_dir":"_6.templates","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:_6.templates:2.typescript.md","_source":"content","_file":"2.frontier/_6.templates/2.typescript.md","_extension":"md"},"hash":"YJl2l1MoeU"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/3.nuxt.md b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/3.nuxt.md
new file mode 100644
index 00000000..23b728f7
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/3.nuxt.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_6.templates/nuxt","_dir":"_6.templates","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:_6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/_6.templates/3.nuxt.md","_extension":"md"},"hash":"w5nB5rtDt1"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/_dir.yml
new file mode 100644
index 00000000..eea1304e
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_6.templates/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_6.templates/_dir","_dir":"_6.templates","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:_6.templates:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_6.templates/_dir.yml","_extension":"yml"},"hash":"AbhDdYEbBX"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/2.frontier/_dir.yml b/docs/.nuxt/content-cache/parsed/content/2.frontier/_dir.yml
new file mode 100644
index 00000000..f70e729d
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/2.frontier/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/frontier/_dir","_dir":"frontier","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_dir.yml","_extension":"yml"},"hash":"rbDhcxf7VZ"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/1.whats-frontier-vue.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/1.whats-frontier-vue.md
new file mode 100644
index 00000000..03e0d73c
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/1.whats-frontier-vue.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/introduction/whats-frontier-vue","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier - Vue?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier-vue"},"children":[{"type":"text","value":"What is Frontier - Vue?"}]},{"type":"element","tag":"h2","props":{"id":"about"},"children":[{"type":"text","value":"About"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Frontier - Vue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models, and a data-layer design promoting unified consumption through Stores and Services."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"about","depth":2,"text":"About"}]}},"_type":"markdown","_id":"content:3.Vue:1.introduction:1.whats-frontier-vue.md","_source":"content","_file":"3.Vue/1.introduction/1.whats-frontier-vue.md","_extension":"md"},"hash":"qhq8G6apRP"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/_dir.yml
new file mode 100644
index 00000000..cdbbaa50
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/1.introduction/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:3.Vue:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/1.introduction/_dir.yml","_extension":"yml"},"hash":"8OGNGk9U9B"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/1.installation.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/1.installation.md
new file mode 100644
index 00000000..4670b66f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/1.installation.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/getting-started/installation","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Installation","description":"For global installation","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For global installation"}]},{"type":"element","tag":"code","props":{"code":"npm install --global @realdecoy/frontier\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-db1dea"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3577da"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-459845"},"children":[{"type":"text","value":"--global"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3577da"},"children":[{"type":"text","value":"@realdecoy/frontier"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"alternatively, use "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"npx"}]},{"type":"text","value":" to execute the binaries remotely"}]},{"type":"element","tag":"code","props":{"code":"npx @realdecoy/frontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-db1dea"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3577da"},"children":[{"type":"text","value":"@realdecoy/frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3577da"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c3e121"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-3577da"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-f1f697"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-c3e121"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-c3e121{color:#CF222E}\n.ct-459845{color:#0550AE}\n.ct-3577da{color:#0A3069}\n.ct-f1f697{color:#24292F}\n.ct-db1dea{color:#953800}\n.dark .ct-db1dea{color:#FFA657}\n.dark .ct-f1f697{color:#C9D1D9}\n.dark .ct-3577da{color:#A5D6FF}\n.dark .ct-459845{color:#79C0FF}\n.dark .ct-c3e121{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:2.getting-started:1.installation.md","_source":"content","_file":"3.Vue/2.getting-started/1.installation.md","_extension":"md"},"hash":"M8fJOrUDxE"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/2.usage.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/2.usage.md
new file mode 100644
index 00000000..4fc09c96
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/2.usage.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/getting-started/usage","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2740b5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-79ce28"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-79ce28"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The help menu can be accessed with the command:"}]},{"type":"element","tag":"code","props":{"code":"frontier vue --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2740b5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7e0984"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"Usage:\r\n frontier vue \r\n\r\nCommands:\r\n add - Add a new module\r\n create-project - Scaffold a new project\r\n plugin - Inject a utility to extend project functionality\r\n upgrade - Specify the template version for a project\r\n\r\nOptions:\r\n --help - Show help information\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"Usage:\r\n frontier vue \r\n\r\nCommands:\r\n add - Add a new module\r\n create-project - Scaffold a new project\r\n plugin - Inject a utility to extend project functionality\r\n upgrade - Specify the template version for a project\r\n\r\nOptions:\r\n --help - Show help information"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"create-a-project"},"children":[{"type":"text","value":"Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2740b5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-79ce28"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-31f034"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2c4d3b"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-79ce28"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project. Generated folders are named in kebab-case."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-7e0984{color:#0550AE}\n.ct-79ce28{color:#CF222E}\n.ct-31f034{color:#0A3069}\n.ct-2c4d3b{color:#24292F}\n.ct-2740b5{color:#953800}\n.dark .ct-2740b5{color:#FFA657}\n.dark .ct-2c4d3b{color:#C9D1D9}\n.dark .ct-31f034{color:#A5D6FF}\n.dark .ct-79ce28{color:#FF7B72}\n.dark .ct-7e0984{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"options","depth":2,"text":"Options","children":[{"id":"create-a-project","depth":3,"text":"Create a project"}]}]}},"_type":"markdown","_id":"content:3.Vue:2.getting-started:2.usage.md","_source":"content","_file":"3.Vue/2.getting-started/2.usage.md","_extension":"md"},"hash":"ey5bukN1Gm"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/3.next-steps.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/3.next-steps.md
new file mode 100644
index 00000000..da31b0c6
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/3.next-steps.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/getting-started/next-steps","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Next Steps","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"step-1-install-project-dependencies"},"children":[{"type":"text","value":"Step 1: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \r\nnpm install\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-61e11c"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-555d68"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dae50b"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-0649f7"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-555d68"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-dae50b"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-cfaefc"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-555d68"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0649f7"},"children":[{"type":"text","value":"install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-2-serve-project"},"children":[{"type":"text","value":"Step 2: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-cfaefc"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-555d68"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0649f7"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-555d68"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0649f7"},"children":[{"type":"text","value":"serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-cfaefc{color:#953800}\n.ct-0649f7{color:#0A3069}\n.ct-dae50b{color:#CF222E}\n.ct-555d68{color:#24292F}\n.ct-61e11c{color:#0550AE}\n.dark .ct-61e11c{color:#79C0FF}\n.dark .ct-555d68{color:#C9D1D9}\n.dark .ct-dae50b{color:#FF7B72}\n.dark .ct-0649f7{color:#A5D6FF}\n.dark .ct-cfaefc{color:#FFA657}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"step-1-install-project-dependencies","depth":3,"text":"Step 1: Install project dependencies"},{"id":"step-2-serve-project","depth":3,"text":"Step 2: Serve project"}]}},"_type":"markdown","_id":"content:3.Vue:2.getting-started:3.next-steps.md","_source":"content","_file":"3.Vue/2.getting-started/3.next-steps.md","_extension":"md"},"hash":"1CsbvbmmLg"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/_dir.yml
new file mode 100644
index 00000000..10af00d8
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/2.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:3.Vue:2.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/2.getting-started/_dir.yml","_extension":"yml"},"hash":"FULamQsldy"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/1.usage.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/1.usage.md
new file mode 100644
index 00000000..97d98079
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/1.usage.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in the frontier vue command-line interface. The vue CLI helps with scaffolfing projects, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"frontier vue"}]},{"type":"text","value":" command-line interface. The vue CLI helps with scaffolfing projects, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"help-menu"},"children":[{"type":"text","value":"Help Menu"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show CLI help"}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Frontier - Vue"}]},{"type":"text","value":" includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c132f0"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Add a feature to a project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue add \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c132f0"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Commands"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue plugin \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c132f0"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"plugin"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"librar"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":"y"}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"localization"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue upgrade \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c132f0"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"upgrade"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ba7a00"},"children":[{"type":"text","value":"versio"}]},{"type":"element","tag":"span","props":{"class":"ct-3ae5f6"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-8f4c92"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-8f4c92{color:#CF222E}\n.ct-ba7a00{color:#0A3069}\n.ct-3ae5f6{color:#24292F}\n.ct-c132f0{color:#953800}\n.dark .ct-c132f0{color:#FFA657}\n.dark .ct-3ae5f6{color:#C9D1D9}\n.dark .ct-ba7a00{color:#A5D6FF}\n.dark .ct-8f4c92{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"help-menu","depth":2,"text":"Help Menu"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.Vue:3.cli-commands:1.usage.md","_source":"content","_file":"3.Vue/3.cli-commands/1.usage.md","_extension":"md"},"hash":"1fnMzykuPZ"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/_dir.yml
new file mode 100644
index 00000000..74eb2489
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/3.cli-commands/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.Vue:3.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/3.cli-commands/_dir.yml","_extension":"yml"},"hash":"mNeslKcacX"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/1.template.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/1.template.md
new file mode 100644
index 00000000..cf238b1d
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/1.template.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/development/template","_dir":"development","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template","description":"The vue scaffolding template can be found here","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template"},"children":[{"type":"text","value":"Template"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The vue scaffolding template can be found "},{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue-template","rel":["nofollow"]},"children":[{"type":"text","value":"here"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:4.development:1.template.md","_source":"content","_file":"3.Vue/4.development/1.template.md","_extension":"md"},"hash":"wF9Kcg0xVo"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/2.schema.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/2.schema.md
new file mode 100644
index 00000000..8fcaa4d5
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/2.schema.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/development/schema","_dir":"development","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"version\": 1\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"sourceDirectory\": \"./\",\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\r\n {\r\n \"name\": \"config\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"store\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"component\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"service\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"model\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"page\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"sm\",\r\n \"private\": false\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\r\n \"auth\",\r\n \"localization\",\r\n \"storybook\"\r\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\r\n {\r\n \"name\": \"Sample Preset 1\",\r\n \"description\": \"Installs storybook, and localization\",\r\n \"plugins\": [\r\n \"storybook\",\r\n \"localization\"\r\n ]\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\r\n \"groups\": [\r\n \"authentication\",\r\n \"locale\"\r\n ],\r\n \"name\": \"custom\"\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"version\": 1,\r\n \"sourceDirectory\": \"./\",\r\n \"features\": [\r\n {\r\n \"name\": \"config\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"store\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"component\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"service\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"model\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"page\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"sm\",\r\n \"private\": false\r\n }\r\n ],\r\n \"plugins\": [\r\n \"auth\",\r\n \"localization\",\r\n \"storybook\"\r\n ],\r\n \"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n },\r\n \"groups\": [\r\n {\r\n \"name\": \"authentication\",\r\n \"isMultipleChoice\": false,\r\n \"plugins\": [\r\n \"auth\"\r\n ],\r\n \"question\": \"Which Authentication Library would you like to install?\"\r\n },\r\n {\r\n \"name\": \"locale\",\r\n \"isMultipleChoice\": false,\r\n \"plugins\": [\r\n \"localization\"\r\n ],\r\n \"question\": \"Which Localization Library would you like to install?\"\r\n }\r\n ],\r\n \"presets\": [\r\n {\r\n \"name\": \"Sample Preset 1\",\r\n \"description\": \"Installs storybook, and localization\",\r\n \"plugins\": [\r\n \"storybook\",\r\n \"localization\"\r\n ]\r\n }\r\n ],\r\n \"customPreset\": {\r\n \"groups\": [\r\n \"authentication\",\r\n \"locale\"\r\n ],\r\n \"name\": \"custom\"\r\n }\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-229b59"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\r\n {\r\n \"source\": \"store/auth.ts\",\r\n \"target\": \"store/auth.ts\"\r\n },\r\n {\r\n \"source\": \"services/auth.ts\",\r\n \"target\": \"services/auth.ts\"\r\n },\r\n {\r\n \"source\": \"model/user.ts\",\r\n \"target\": \"model/user.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/index.ts\",\r\n \"target\": \"pages/auth/register/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.ts\",\r\n \"target\": \"pages/auth/register/register.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.scss\",\r\n \"target\": \"pages/auth/register/register.scss\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.vue\",\r\n \"target\": \"pages/auth/register/register.vue\"\r\n },\r\n {\r\n \"source\": \"pages/login/index.ts\",\r\n \"target\": \"pages/auth/login/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.ts\",\r\n \"target\": \"pages/auth/login/login.ts\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.scss\",\r\n \"target\": \"pages/auth/login/login.scss\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.vue\",\r\n \"target\": \"pages/auth/login/login.vue\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/index.ts\",\r\n \"target\": \"pages/auth/forget-password/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.ts\",\r\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.scss\",\r\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.vue\",\r\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\r\n {\r\n \"source\": \"index.ts\",\r\n \"target\": \"index.ts\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.scss\",\r\n \"target\": \"${componentNameKebab}.scss\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.ts\",\r\n \"target\": \"${componentNameKebab}.ts\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n },\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentName}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.spec.js\",\r\n \"target\": \"${componentNameKebab}.spec.js\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n },\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentName}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.vue\",\r\n \"target\": \"${componentNameKebab}.vue\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n }\r\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5bdcc5"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a77c23"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-7071d3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3ce69f"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\r\n _Note: files section can be a combination of both types mentioned above._\r\n\r\n### packages\r\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\r\n\r\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\r\n\r\n```json\r\n \"packages\": {\r\n \"dependencies\": [\"vue-i18n\"],\r\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\r\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\r\n _Note: files section can be a combination of both types mentioned above._\r\n\r\n### packages\r\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\r\n\r\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\r\n\r\n```json\r\n \"packages\": {\r\n \"dependencies\": [\"vue-i18n\"],\r\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\r\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\r\n {\r\n \"path\": \"'/buefy-sample'\",\r\n \"name\": \"'buefy-sample'\",\r\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\r\n }\r\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\r\n {\r\n \"path\": \"'/buefy-sample'\",\r\n \"name\": \"'buefy-sample'\",\r\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\r\n }\r\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\r\n path: '/buefy-sample',\r\n name: 'buefy-sample',\r\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\r\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-07890a"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-07890a"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-ac7d12"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-116528"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-928a4b"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-1787d9"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\r\n \"transpileDependencies\": [\r\n \"'vuetify'\"\r\n ]\r\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\r\n \"transpileDependencies\": [\r\n \"'vuetify'\"\r\n ]\r\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\r\n transpileDependencies: 'vuetify',\r\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\r\n transpileDependencies: 'vuetify',\r\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\r\n \"vuetify\": \"`require('@/config/vuetify').default`\"\r\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\r\n \"vuetify\": \"`require('@/config/vuetify').default`\"\r\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-ac7d12{color:#8250DF}\n.ct-928a4b{color:#953800}\n.ct-07890a{color:#CF222E}\n.ct-5bdcc5{color:#0A3069}\n.ct-229b59{color:#0550AE}\n.ct-a77c23{color:#116329}\n.ct-7071d3{color:#24292F}\n.dark .ct-7071d3{color:#C9D1D9}\n.dark .ct-a77c23{color:#7EE787}\n.dark .ct-229b59{color:#79C0FF}\n.dark .ct-5bdcc5{color:#A5D6FF}\n.dark .ct-a96f3f{color:#FF7B72}\n.dark .ct-370b5d{color:#FFA657}\n.dark .ct-814202{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.Vue:4.development:2.schema.md","_source":"content","_file":"3.Vue/4.development/2.schema.md","_extension":"md"},"hash":"VyzH75UHEX"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/_dir.yml
new file mode 100644
index 00000000..46b63d26
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.development/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/development/_dir","_dir":"development","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.Vue:4.development:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/4.development/_dir.yml","_extension":"yml"},"hash":"ekTY7BnJK5"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/1.template.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/1.template.md
new file mode 100644
index 00000000..8003231f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/1.template.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/scaffolding/template","_dir":"scaffolding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template","description":"The vue scaffolding template can be found here","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template"},"children":[{"type":"text","value":"Template"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The vue scaffolding template can be found "},{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue-template","rel":["nofollow"]},"children":[{"type":"text","value":"here"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:4.scaffolding:1.template.md","_source":"content","_file":"3.Vue/4.scaffolding/1.template.md","_extension":"md"},"hash":"6E9WDBRkbS"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/2.schema.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/2.schema.md
new file mode 100644
index 00000000..d4bdeee7
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/2.schema.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/scaffolding/schema","_dir":"scaffolding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"version\": 1\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"sourceDirectory\": \"./\",\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\r\n {\r\n \"name\": \"config\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"store\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"component\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"service\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"model\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"page\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"sm\",\r\n \"private\": false\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\r\n \"auth\",\r\n \"localization\",\r\n \"storybook\"\r\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\r\n {\r\n \"name\": \"Sample Preset 1\",\r\n \"description\": \"Installs storybook, and localization\",\r\n \"plugins\": [\r\n \"storybook\",\r\n \"localization\"\r\n ]\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\r\n \"groups\": [\r\n \"authentication\",\r\n \"locale\"\r\n ],\r\n \"name\": \"custom\"\r\n }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\r\n \"version\": 1,\r\n \"sourceDirectory\": \"./\",\r\n \"features\": [\r\n {\r\n \"name\": \"config\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"store\",\r\n \"private\": true\r\n },\r\n {\r\n \"name\": \"component\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"service\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"model\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"page\",\r\n \"private\": false\r\n },\r\n {\r\n \"name\": \"sm\",\r\n \"private\": false\r\n }\r\n ],\r\n \"plugins\": [\r\n \"auth\",\r\n \"localization\",\r\n \"storybook\"\r\n ],\r\n \"project\": {\r\n \"features\": [\r\n \"config\",\r\n \"store\"\r\n ],\r\n \"plugins\": [\r\n \"storybook\"\r\n ]\r\n },\r\n \"groups\": [\r\n {\r\n \"name\": \"authentication\",\r\n \"isMultipleChoice\": false,\r\n \"plugins\": [\r\n \"auth\"\r\n ],\r\n \"question\": \"Which Authentication Library would you like to install?\"\r\n },\r\n {\r\n \"name\": \"locale\",\r\n \"isMultipleChoice\": false,\r\n \"plugins\": [\r\n \"localization\"\r\n ],\r\n \"question\": \"Which Localization Library would you like to install?\"\r\n }\r\n ],\r\n \"presets\": [\r\n {\r\n \"name\": \"Sample Preset 1\",\r\n \"description\": \"Installs storybook, and localization\",\r\n \"plugins\": [\r\n \"storybook\",\r\n \"localization\"\r\n ]\r\n }\r\n ],\r\n \"customPreset\": {\r\n \"groups\": [\r\n \"authentication\",\r\n \"locale\"\r\n ],\r\n \"name\": \"custom\"\r\n }\r\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e319c"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\r\n {\r\n \"source\": \"store/auth.ts\",\r\n \"target\": \"store/auth.ts\"\r\n },\r\n {\r\n \"source\": \"services/auth.ts\",\r\n \"target\": \"services/auth.ts\"\r\n },\r\n {\r\n \"source\": \"model/user.ts\",\r\n \"target\": \"model/user.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/index.ts\",\r\n \"target\": \"pages/auth/register/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.ts\",\r\n \"target\": \"pages/auth/register/register.ts\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.scss\",\r\n \"target\": \"pages/auth/register/register.scss\"\r\n },\r\n {\r\n \"source\": \"pages/register/register.vue\",\r\n \"target\": \"pages/auth/register/register.vue\"\r\n },\r\n {\r\n \"source\": \"pages/login/index.ts\",\r\n \"target\": \"pages/auth/login/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.ts\",\r\n \"target\": \"pages/auth/login/login.ts\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.scss\",\r\n \"target\": \"pages/auth/login/login.scss\"\r\n },\r\n {\r\n \"source\": \"pages/login/login.vue\",\r\n \"target\": \"pages/auth/login/login.vue\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/index.ts\",\r\n \"target\": \"pages/auth/forget-password/index.ts\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.ts\",\r\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.scss\",\r\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\r\n },\r\n {\r\n \"source\": \"pages/forget-password/forget-password.vue\",\r\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\r\n }\r\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\r\n {\r\n \"source\": \"index.ts\",\r\n \"target\": \"index.ts\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.scss\",\r\n \"target\": \"${componentNameKebab}.scss\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.ts\",\r\n \"target\": \"${componentNameKebab}.ts\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n },\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentName}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.spec.js\",\r\n \"target\": \"${componentNameKebab}.spec.js\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n },\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentName}\"\r\n }\r\n ]\r\n },\r\n {\r\n \"source\": \"component.vue\",\r\n \"target\": \"${componentNameKebab}.vue\",\r\n \"content\": [\r\n {\r\n \"matchRegex\": \"__COMPONENT__\",\r\n \"replace\": \"${componentNameKebab}\"\r\n }\r\n ]\r\n }\r\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-60c0dd"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\r\n _Note: files section can be a combination of both types mentioned above._\r\n\r\n### packages\r\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\r\n\r\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\r\n\r\n```json\r\n \"packages\": {\r\n \"dependencies\": [\"vue-i18n\"],\r\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\r\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\r\n _Note: files section can be a combination of both types mentioned above._\r\n\r\n### packages\r\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\r\n\r\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\r\n\r\n```json\r\n \"packages\": {\r\n \"dependencies\": [\"vue-i18n\"],\r\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\r\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\r\n {\r\n \"path\": \"'/buefy-sample'\",\r\n \"name\": \"'buefy-sample'\",\r\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\r\n }\r\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\r\n {\r\n \"path\": \"'/buefy-sample'\",\r\n \"name\": \"'buefy-sample'\",\r\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\r\n }\r\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\r\n path: '/buefy-sample',\r\n name: 'buefy-sample',\r\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\r\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4526f3"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4526f3"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-6265b9"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-d76621"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ba67ae"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-4eae0c"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\r\n \"transpileDependencies\": [\r\n \"'vuetify'\"\r\n ]\r\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\r\n \"transpileDependencies\": [\r\n \"'vuetify'\"\r\n ]\r\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\r\n transpileDependencies: 'vuetify',\r\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\r\n transpileDependencies: 'vuetify',\r\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\r\n \"vuetify\": \"`require('@/config/vuetify').default`\"\r\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\r\n \"vuetify\": \"`require('@/config/vuetify').default`\"\r\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-6265b9{color:#8250DF}\n.ct-ba67ae{color:#953800}\n.ct-4526f3{color:#CF222E}\n.ct-d76621{color:#0A3069}\n.ct-3e319c{color:#0550AE}\n.ct-60c0dd{color:#116329}\n.ct-4eae0c{color:#24292F}\n.dark .ct-4eae0c{color:#C9D1D9}\n.dark .ct-60c0dd{color:#7EE787}\n.dark .ct-3e319c{color:#79C0FF}\n.dark .ct-d76621{color:#A5D6FF}\n.dark .ct-4526f3{color:#FF7B72}\n.dark .ct-ba67ae{color:#FFA657}\n.dark .ct-6265b9{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.Vue:4.scaffolding:2.schema.md","_source":"content","_file":"3.Vue/4.scaffolding/2.schema.md","_extension":"md"},"hash":"VyzH75UHEX"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/_dir.yml
new file mode 100644
index 00000000..7e1c6cf9
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/4.scaffolding/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/scaffolding/_dir","_dir":"scaffolding","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.Vue:4.scaffolding:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/4.scaffolding/_dir.yml","_extension":"yml"},"hash":"ekTY7BnJK5"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/0.overview.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/0.overview.md
new file mode 100644
index 00000000..ebb80636
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/0.overview.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/overview","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Overview","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"overview"},"children":[{"type":"text","value":"Overview"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:5.features:0.overview.md","_source":"content","_file":"3.Vue/5.features/0.overview.md","_extension":"md"},"hash":"i0GLG8Cm3W"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/1.pages.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/1.pages.md
new file mode 100644
index 00000000..6f77c2f5
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/1.pages.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/pages","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Pages","description":"A Page is a conceptual grouping for Vue Components used in routing. Pages are not to be imported by other Pages, Components or Layouts.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:1.pages.md","_source":"content","_file":"3.Vue/5.features/1.pages.md","_extension":"md"},"hash":"ZcRwaZds4U"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/10.theming.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/10.theming.md
new file mode 100644
index 00000000..48ba9033
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/10.theming.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/theming","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Tailwind is the best practice approach for styling Components and Pages within RDVue."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.Vue:5.features:10.theming.md","_source":"content","_file":"3.Vue/5.features/10.theming.md","_extension":"md"},"hash":"mKR622W3fM"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/2.components.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/2.components.md
new file mode 100644
index 00000000..ebc4819c
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/2.components.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"A Component is a conceptual grouping for Vue components which are imported by Pages and other Components.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
slots: {
header: ‘The header component goes here’,
...
}
"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:2.components.md","_source":"content","_file":"3.Vue/5.features/2.components.md","_extension":"md"},"hash":"CoBVQ4Sd75"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/3.services.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/3.services.md
new file mode 100644
index 00000000..4b37bcf2
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/3.services.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:3.services.md","_source":"content","_file":"3.Vue/5.features/3.services.md","_extension":"md"},"hash":"QxsQgxWqqY"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/4.layouts.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/4.layouts.md
new file mode 100644
index 00000000..9a9fc169
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/4.layouts.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/layouts","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Layouts","description":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","language":"ts","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-cd33fe"},"children":[{"type":"text","value":"meta"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cd33fe"},"children":[{"type":"text","value":"layout"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-39be03"},"children":[{"type":"text","value":"''"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","language":"ts","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cd33fe"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" path: "}]},{"type":"element","tag":"span","props":{"class":"ct-39be03"},"children":[{"type":"text","value":"'/'"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" name: "}]},{"type":"element","tag":"span","props":{"class":"ct-39be03"},"children":[{"type":"text","value":"'home'"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" component: ["}]},{"type":"element","tag":"span","props":{"class":"ct-15470e"},"children":[{"type":"text","value":"..."}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":"],"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" meta: {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" layout: "}]},{"type":"element","tag":"span","props":{"class":"ct-39be03"},"children":[{"type":"text","value":"'two-column'"}]},{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-768113"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-15470e{color:#CF222E}\n.ct-39be03{color:#0A3069}\n.ct-768113{color:#24292F}\n.ct-cd33fe{color:#953800}\n.dark .ct-cd33fe{color:#FFA657}\n.dark .ct-768113{color:#C9D1D9}\n.dark .ct-39be03{color:#A5D6FF}\n.dark .ct-15470e{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:4.layouts.md","_source":"content","_file":"3.Vue/5.features/4.layouts.md","_extension":"md"},"hash":"Tq9TX1aVIH"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/5.stores.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/5.stores.md
new file mode 100644
index 00000000..570ea891
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/5.stores.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores","description":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:5.stores.md","_source":"content","_file":"3.Vue/5.features/5.stores.md","_extension":"md"},"hash":"gpcGcDer4C"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/6.localization.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/6.localization.md
new file mode 100644
index 00000000..a9103990
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/6.localization.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/localization","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Localization","description":"Localization refers to the adaptation of an application or website content to meet the language, cultural and other requirements of a specific target market (a locale). This feature has two parts that is required to work:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"**i18n language codes,**"}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3e293"},"children":[{"type":"text","value":"\"message\""}]},{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-9b9628"},"children":[{"type":"text","value":"\"hello i18n!!\""}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within document as follows:"}]},{"type":"element","tag":"code","props":{"code":"\n
{{ $t(\"message\") }}
\n
\n","language":"html","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f3e293"},"children":[{"type":"text","value":"div"}]},{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-f3e293"},"children":[{"type":"text","value":"p"}]},{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":">{{ $t(\"message\") }}"}]},{"type":"element","tag":"span","props":{"class":"ct-f3e293"},"children":[{"type":"text","value":"p"}]},{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":""}]},{"type":"element","tag":"span","props":{"class":"ct-f3e293"},"children":[{"type":"text","value":"div"}]},{"type":"element","tag":"span","props":{"class":"ct-604542"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"if the **locale** is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-9b9628{color:#0A3069}\n.ct-f3e293{color:#116329}\n.ct-604542{color:#24292F}\n.dark .ct-604542{color:#C9D1D9}\n.dark .ct-f3e293{color:#7EE787}\n.dark .ct-9b9628{color:#A5D6FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:6.localization.md","_source":"content","_file":"3.Vue/5.features/6.localization.md","_extension":"md"},"hash":"HXlWxB9Koq"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/7.bundle-analysis.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/7.bundle-analysis.md
new file mode 100644
index 00000000..248c33bc
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/7.bundle-analysis.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/bundle-analysis","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Bundle Analysis","description":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:5.features:7.bundle-analysis.md","_source":"content","_file":"3.Vue/5.features/7.bundle-analysis.md","_extension":"md"},"hash":"NOGkjYrvPP"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/8.routing.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/8.routing.md
new file mode 100644
index 00000000..c5887611
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/8.routing.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/routing","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Routing","description":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","language":"ts","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f81f45"},"children":[{"type":"text","value":"path"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-611d7c"},"children":[{"type":"text","value":"'/login'"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f81f45"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-611d7c"},"children":[{"type":"text","value":"'login'"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f81f45"},"children":[{"type":"text","value":"meta"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":": { "}]},{"type":"element","tag":"span","props":{"class":"ct-f81f45"},"children":[{"type":"text","value":"layout"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-611d7c"},"children":[{"type":"text","value":"'default'"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f81f45"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":": () "}]},{"type":"element","tag":"span","props":{"class":"ct-c5a228"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e8d362"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-f6957b"},"children":[{"type":"text","value":"/* webpackChunkName: \"login\" */"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-611d7c"},"children":[{"type":"text","value":"'@/pages/login'"}]},{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":"),"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a0a01f"},"children":[{"type":"text","value":"},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-f6957b{color:#6E7781}\n.ct-e8d362{color:#8250DF}\n.ct-c5a228{color:#CF222E}\n.ct-611d7c{color:#0A3069}\n.ct-f81f45{color:#953800}\n.ct-a0a01f{color:#24292F}\n.dark .ct-a0a01f{color:#C9D1D9}\n.dark .ct-f81f45{color:#FFA657}\n.dark .ct-611d7c{color:#A5D6FF}\n.dark .ct-c5a228{color:#FF7B72}\n.dark .ct-e8d362{color:#D2A8FF}\n.dark .ct-f6957b{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:3.Vue:5.features:8.routing.md","_source":"content","_file":"3.Vue/5.features/8.routing.md","_extension":"md"},"hash":"9WzAx2bust"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/9.sitemap.md b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/9.sitemap.md
new file mode 100644
index 00000000..435d4e8a
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/9.sitemap.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/sitemap","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\r\nimport { SitemapStream, streamToPromise } from 'sitemap'\r\n\r\nexport default defineEventHandler(async (event) => {\r\n // Fetch all documents\r\n const docs = await serverQueryContent(event).find()\r\n const sitemap = new SitemapStream({\r\n hostname: 'https://example.com'\r\n })\r\n\r\n for (const doc of docs) {\r\n sitemap.write({\r\n url: doc._path,\r\n changefreq: 'monthly'\r\n })\r\n }\r\n sitemap.end()\r\n\r\n return streamToPromise(sitemap)\r\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-760d60"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1c8d83"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\r\n // ...\r\n nitro: {\r\n prerender: {\r\n routes: ['/sitemap.xml']\r\n }\r\n }\r\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-55b0bb"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4b75bc"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-760d60"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-c01530"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1ed50a"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f40829"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-760d60{color:#6E7781}\n.ct-4b75bc{color:#8250DF}\n.ct-55b0bb{color:#CF222E}\n.ct-1c8d83{color:#0550AE}\n.ct-c01530{color:#0A3069}\n.ct-1ed50a{color:#24292F}\n.ct-f40829{color:#953800}\n.dark .ct-f40829{color:#FFA657}\n.dark .ct-1ed50a{color:#C9D1D9}\n.dark .ct-c01530{color:#A5D6FF}\n.dark .ct-1c8d83{color:#79C0FF}\n.dark .ct-55b0bb{color:#FF7B72}\n.dark .ct-4b75bc{color:#D2A8FF}\n.dark .ct-760d60{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.Vue:5.features:9.sitemap.md","_source":"content","_file":"3.Vue/5.features/9.sitemap.md","_extension":"md"},"hash":"zcOa6yiFwW"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/_dir.yml
new file mode 100644
index 00000000..8193b9ee
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/5.features/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.Vue:5.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/5.features/_dir.yml","_extension":"yml"},"hash":"vr5xuhhXyG"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/3.Vue/_dir.yml b/docs/.nuxt/content-cache/parsed/content/3.Vue/_dir.yml
new file mode 100644
index 00000000..1848ed19
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/3.Vue/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/vue/_dir","_dir":"vue","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.Vue:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.Vue/_dir.yml","_extension":"yml"},"hash":"yShZHHlIE5"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/1.whats-frontier-mobile.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/1.whats-frontier-mobile.md
new file mode 100644
index 00000000..685434f4
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/1.whats-frontier-mobile.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/introduction/whats-frontier-mobile","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier - Mobile?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier-mobile"},"children":[{"type":"text","value":"What is Frontier - Mobile?"}]},{"type":"element","tag":"h2","props":{"id":"about"},"children":[{"type":"text","value":"About"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/development/src/commands/mobile","rel":["nofollow"]},"children":[{"type":"text","value":"Frontier - Mobile"}]},{"type":"text","value":" is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\r\nand a data-layer design promoting unified consumption through React Contexts and Services.\r\nFollow the installation guide to set up the Mobile CLI."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"about","depth":2,"text":"About"}]}},"_type":"markdown","_id":"content:4.mobile:1.introduction:1.whats-frontier-mobile.md","_source":"content","_file":"4.mobile/1.introduction/1.whats-frontier-mobile.md","_extension":"md"},"hash":"aI4h0Laxcn"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/_dir.yml
new file mode 100644
index 00000000..835b90d4
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/1.introduction/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:4.mobile:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/1.introduction/_dir.yml","_extension":"yml"},"hash":"8OGNGk9U9B"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/1.installation.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/1.installation.md
new file mode 100644
index 00000000..efb917f6
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/1.installation.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/getting-started/installation","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Installation","description":"For global installation","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For global installation"}]},{"type":"element","tag":"code","props":{"code":"npm install --global @realdecoy/frontier\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c1367b"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cff58c"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-90aa32"},"children":[{"type":"text","value":"--global"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cff58c"},"children":[{"type":"text","value":"@realdecoy/frontier"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"alternatively, use "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"npx"}]},{"type":"text","value":" to execute the binaries remotely"}]},{"type":"element","tag":"code","props":{"code":"npx @realdecoy/frontier mobile \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c1367b"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cff58c"},"children":[{"type":"text","value":"@realdecoy/frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cff58c"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-baec53"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-cff58c"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-4b763f"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-baec53"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"system-requirements"},"children":[{"type":"text","value":"System Requirements"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You will need "},{"type":"element","tag":"a","props":{"href":"https://docs.expo.dev/get-started/installation/#expo-cli","rel":["nofollow"]},"children":[{"type":"text","value":"React Native Expo CLI"}]},{"type":"text","value":" and its dependencies in order to run this frontier project."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Git"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For macOS or Linux users: Watchman"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"MacOs to run on iOS simular."}]}]},{"type":"element","tag":"h3","props":{"id":"recommended-tools"},"children":[{"type":"text","value":"Recommended tools"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual Studio Code Editor "},{"type":"element","tag":"a","props":{"href":"https://code.visualstudio.com/download","rel":["nofollow"]},"children":[{"type":"text","value":"VS Code"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-baec53{color:#CF222E}\n.ct-90aa32{color:#0550AE}\n.ct-cff58c{color:#0A3069}\n.ct-4b763f{color:#24292F}\n.ct-c1367b{color:#953800}\n.dark .ct-c1367b{color:#FFA657}\n.dark .ct-4b763f{color:#C9D1D9}\n.dark .ct-cff58c{color:#A5D6FF}\n.dark .ct-90aa32{color:#79C0FF}\n.dark .ct-baec53{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"system-requirements","depth":2,"text":"System Requirements","children":[{"id":"recommended-tools","depth":3,"text":"Recommended tools"}]}]}},"_type":"markdown","_id":"content:4.mobile:2.getting-started:1.installation.md","_source":"content","_file":"4.mobile/2.getting-started/1.installation.md","_extension":"md"},"hash":"GDF8k3TTfL"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/2.usage.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/2.usage.md
new file mode 100644
index 00000000..cfc380a0
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/2.usage.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/getting-started/usage","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-520bc4"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2f64b0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-2f64b0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The help menu can be accessed with the command:"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-520bc4"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-10ab73"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"Usage:\n frontier mobile \n\nCommands:\n add - Add a new module\n create-project - Scaffold a new project\n plugin - Inject a utility to extend project functionality\n\nOptions:\n --help - Show help information\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"Usage:\n frontier mobile \n\nCommands:\n add - Add a new module\n create-project - Scaffold a new project\n plugin - Inject a utility to extend project functionality\n\nOptions:\n --help - Show help information"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now we can start using the CLI if the installation was successful."}]},{"type":"element","tag":"h3","props":{"id":"create-a-project"},"children":[{"type":"text","value":"Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-520bc4"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2f64b0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2f64b0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"project-name","props":{},"children":[{"type":"text","value":" with the actual name of your project. Preferrably written in snake case (eg. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"my-awesome-project"}]},{"type":"text","value":")."}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project my-awesome-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-520bc4"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-e6977e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c25c44"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-10ab73{color:#0550AE}\n.ct-2f64b0{color:#CF222E}\n.ct-c25c44{color:#0A3069}\n.ct-e6977e{color:#24292F}\n.ct-520bc4{color:#953800}\n.dark .ct-520bc4{color:#FFA657}\n.dark .ct-e6977e{color:#C9D1D9}\n.dark .ct-c25c44{color:#A5D6FF}\n.dark .ct-2f64b0{color:#FF7B72}\n.dark .ct-10ab73{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"options","depth":2,"text":"Options","children":[{"id":"create-a-project","depth":3,"text":"Create a project"}]}]}},"_type":"markdown","_id":"content:4.mobile:2.getting-started:2.usage.md","_source":"content","_file":"4.mobile/2.getting-started/2.usage.md","_extension":"md"},"hash":"Zck4PAfsz1"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/3.next-steps.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/3.next-steps.md
new file mode 100644
index 00000000..a4c10995
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/3.next-steps.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/getting-started/next-steps","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Next Steps","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"step-1-run-project"},"children":[{"type":"text","value":"Step 1: Run project"}]},{"type":"element","tag":"code","props":{"code":"cd my-awesome-project\n","language":"shell","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-628c58"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-1c3c7e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2823b0"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the iOS App (Mac only)."}]},{"type":"element","tag":"code","props":{"code":"npm run ios\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1bcb3a"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-1c3c7e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2823b0"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-1c3c7e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2823b0"},"children":[{"type":"text","value":"ios"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the Android App."}]},{"type":"element","tag":"code","props":{"code":"npm run android\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1bcb3a"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-1c3c7e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2823b0"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-1c3c7e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2823b0"},"children":[{"type":"text","value":"android"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"more"},"children":[{"type":"text","value":"More"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here you can perform multiple other actions but a good next step is to explore the cli commands."}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-1bcb3a{color:#953800}\n.ct-2823b0{color:#0A3069}\n.ct-1c3c7e{color:#24292F}\n.ct-628c58{color:#0550AE}\n.dark .ct-628c58{color:#79C0FF}\n.dark .ct-1c3c7e{color:#C9D1D9}\n.dark .ct-2823b0{color:#A5D6FF}\n.dark .ct-1bcb3a{color:#FFA657}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"step-1-run-project","depth":3,"text":"Step 1: Run project"},{"id":"more","depth":2,"text":"More"}]}},"_type":"markdown","_id":"content:4.mobile:2.getting-started:3.next-steps.md","_source":"content","_file":"4.mobile/2.getting-started/3.next-steps.md","_extension":"md"},"hash":"Gn7qV9dKxS"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/_dir.yml
new file mode 100644
index 00000000..c93b1624
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/2.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:4.mobile:2.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/2.getting-started/_dir.yml","_extension":"yml"},"hash":"MRvkvX4JM1"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/1.usage.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/1.usage.md
new file mode 100644
index 00000000..ec0ead94
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/1.usage.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Frontier - Mobile command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Frontier - Mobile"}]},{"type":"text","value":" command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"help-menu"},"children":[{"type":"text","value":"Help Menu"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the CLI option below for a list of commands and options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-bbd9b3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f5261"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"cli-command"},"children":[{"type":"text","value":"CLI Command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Frontier - Mobile"}]},{"type":"text","value":" includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]},{"type":"text","value":" will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-bbd9b3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--bundleIdenifier"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app)."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--verbose"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show debug logs when creating the project."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-bbd9b3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"featur"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile plugin \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-bbd9b3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"plugin"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-ec89f8"},"children":[{"type":"text","value":"librar"}]},{"type":"element","tag":"span","props":{"class":"ct-6cda9f"},"children":[{"type":"text","value":"y"}]},{"type":"element","tag":"span","props":{"class":"ct-2eab63"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-3f5261{color:#0550AE}\n.ct-2eab63{color:#CF222E}\n.ct-ec89f8{color:#0A3069}\n.ct-6cda9f{color:#24292F}\n.ct-bbd9b3{color:#953800}\n.dark .ct-bbd9b3{color:#FFA657}\n.dark .ct-6cda9f{color:#C9D1D9}\n.dark .ct-ec89f8{color:#A5D6FF}\n.dark .ct-2eab63{color:#FF7B72}\n.dark .ct-3f5261{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"help-menu","depth":2,"text":"Help Menu"},{"id":"cli-command","depth":2,"text":"CLI Command","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"}]}]}},"_type":"markdown","_id":"content:4.mobile:3.cli-commands:1.usage.md","_source":"content","_file":"4.mobile/3.cli-commands/1.usage.md","_extension":"md"},"hash":"IhNySlZLlK"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/_dir.yml
new file mode 100644
index 00000000..8ef4a5fa
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/3.cli-commands/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:4.mobile:3.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/3.cli-commands/_dir.yml","_extension":"yml"},"hash":"WDPgO4uJ5e"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/0.overview.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/0.overview.md
new file mode 100644
index 00000000..446234f5
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/0.overview.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/overview","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Overview","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"overview"},"children":[{"type":"text","value":"Overview"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It is recommended to read through the "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Reference"}]},{"type":"text","value":" before continuing with this document."}]}]},{"type":"element","tag":"hr","props":{},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.mobile:4.features:0.overview.md","_source":"content","_file":"4.mobile/4.features/0.overview.md","_extension":"md"},"hash":"lFv1FpRu04"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/1.screens.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/1.screens.md
new file mode 100644
index 00000000..65c24b99
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/1.screens.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/screens","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Screens","description":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Screen, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#nagivation"},"children":[{"type":"text","value":"Navigator"}]},{"type":"text","value":" before it can be used within a mobile application."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add screen \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-68a28a"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"screen"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-81e9c0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-81e9c0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"example"},"children":[{"type":"text","value":"Example"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add screen login\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-68a28a"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"screen"}]},{"type":"element","tag":"span","props":{"class":"ct-752827"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f3d73f"},"children":[{"type":"text","value":"login"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen is contained within it's own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/screens"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Screen:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tsx"}]},{"type":"text","value":": This is similar to a "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":" but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"styles.tsx"}]},{"type":"text","value":": All Stylesheet file are the same as the stylesheet used shown in "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-81e9c0{color:#CF222E}\n.ct-f3d73f{color:#0A3069}\n.ct-752827{color:#24292F}\n.ct-68a28a{color:#953800}\n.dark .ct-68a28a{color:#FFA657}\n.dark .ct-752827{color:#C9D1D9}\n.dark .ct-f3d73f{color:#A5D6FF}\n.dark .ct-81e9c0{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:4.mobile:4.features:1.screens.md","_source":"content","_file":"4.mobile/4.features/1.screens.md","_extension":"md"},"hash":"YXZWYBMYXs"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/2.components.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/2.components.md
new file mode 100644
index 00000000..881c0ddc
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/2.components.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":". Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add component \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6a2c42"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"example"},"children":[{"type":"text","value":"Example"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add component fancy-text\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6a2c42"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"fancy-text"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component folder consists of for two files. These file include:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".tsx"}]},{"type":"text","value":": This file holds actual functional logic and view hierarchy for the component you are trying to create.."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".styles.tsx"}]},{"type":"text","value":": This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See below for example of folder structure after creating a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text"}]},{"type":"text","value":":"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/frontier/tree/mobile-integration/packages/frontier-plugins/plugin-mobile/docs/images/component.png"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.tsx"}]}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.tsx\n\nimport { Component } from \"react\";\nimport styles from \"./fancy-text.styles\";\n\nclass FancyText extends Component {\n render() {\n return Some Fancy Text\n }\n}\n\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad651d"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.tsx"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" { Component } "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"\"react\""}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" styles "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"\"./fancy-text.styles\""}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"class"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-6a2c42"},"children":[{"type":"text","value":"FancyText"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"extends"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9b84d3"},"children":[{"type":"text","value":"Component"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-806cdf"},"children":[{"type":"text","value":"render"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"() {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-e7d14d"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9b84d3"},"children":[{"type":"text","value":"style"}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"styles.title"}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":">Some Fancy Text"}]},{"type":"element","tag":"span","props":{"class":"ct-e7d14d"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example of the stylesheet "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.styles.tsx"}]},{"type":"text","value":"."}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.style.tsx\n\nimport { StyleSheet } from \"react-native\";\n\nexport StyleSheet.create({\n text: {\n color: \"red\",\n fontSize: 18,\n }\n });\n};\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad651d"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.style.tsx"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" { StyleSheet } "}]},{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"\"react-native\""}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e3bff0"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" StyleSheet."}]},{"type":"element","tag":"span","props":{"class":"ct-806cdf"},"children":[{"type":"text","value":"create"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" text: {"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" color: "}]},{"type":"element","tag":"span","props":{"class":"ct-daaacd"},"children":[{"type":"text","value":"\"red\""}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" fontSize: "}]},{"type":"element","tag":"span","props":{"class":"ct-9b84d3"},"children":[{"type":"text","value":"18"}]},{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":" });"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-730691"},"children":[{"type":"text","value":"};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"choosing-between-class-and-function-components"},"children":[{"type":"text","value":"Choosing between Class and Function components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Class-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you want to work with components lifecycle functions - Even though react provides hooks like "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"useEffect()"}]},{"type":"text","value":", this can get quite cumbersome when the components grows."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screen"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#stores--context"},"children":[{"type":"text","value":"Context Provider"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"state"}]},{"type":"text","value":" variables - A general rule of thump is to keep state variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"props"}]},{"type":"text","value":" variables - A general rule of thump is to keep props variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you intend on making API calls from within the component."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Function-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If the component is mostly visual with little to no functional logic."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-e7d14d{color:#116329}\n.ct-806cdf{color:#8250DF}\n.ct-9b84d3{color:#0550AE}\n.ct-ad651d{color:#6E7781}\n.ct-e3bff0{color:#CF222E}\n.ct-daaacd{color:#0A3069}\n.ct-730691{color:#24292F}\n.ct-6a2c42{color:#953800}\n.dark .ct-6a2c42{color:#FFA657}\n.dark .ct-730691{color:#C9D1D9}\n.dark .ct-daaacd{color:#A5D6FF}\n.dark .ct-e3bff0{color:#FF7B72}\n.dark .ct-ad651d{color:#8B949E}\n.dark .ct-9b84d3{color:#79C0FF}\n.dark .ct-806cdf{color:#D2A8FF}\n.dark .ct-e7d14d{color:#7EE787}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"},{"id":"choosing-between-class-and-function-components","depth":3,"text":"Choosing between Class and Function components"}]}},"_type":"markdown","_id":"content:4.mobile:4.features:2.components.md","_source":"content","_file":"4.mobile/4.features/2.components.md","_extension":"md"},"hash":"LmLQVUV5qI"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/3.services.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/3.services.md
new file mode 100644
index 00000000..d22650fc
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/3.services.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add service \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-61d112"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"service"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-cbdee5"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"service-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-cbdee5"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"example"},"children":[{"type":"text","value":"Example"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add service auth\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-61d112"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"service"}]},{"type":"element","tag":"span","props":{"class":"ct-8031fa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f91fc6"},"children":[{"type":"text","value":"auth"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"output-file"},"children":[{"type":"text","value":"Output File"}]},{"type":"element","tag":"code","props":{"code":"src/services/auth.service.tsx\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"src/services/auth.service.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/services"}]},{"type":"text","value":" directory. The directory contains a file for each service that has been created:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[service-name]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"serivce.tsx"}]},{"type":"text","value":": The file will contain a related grouping of http functions."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage)."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-cbdee5{color:#CF222E}\n.ct-f91fc6{color:#0A3069}\n.ct-8031fa{color:#24292F}\n.ct-61d112{color:#953800}\n.dark .ct-61d112{color:#FFA657}\n.dark .ct-8031fa{color:#C9D1D9}\n.dark .ct-f91fc6{color:#A5D6FF}\n.dark .ct-cbdee5{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:4.mobile:4.features:3.services.md","_source":"content","_file":"4.mobile/4.features/3.services.md","_extension":"md"},"hash":"ElYyLFjzh3"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/4.navigation.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/4.navigation.md
new file mode 100644
index 00000000..38e66ffc
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/4.navigation.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/navigation","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Nagivation","description":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"nagivation"},"children":[{"type":"text","value":"Nagivation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated context is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"\n \n\n","language":"jsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-42ddbd"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5b0ad2"},"children":[{"type":"text","value":"screenOptions"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":"{ headerShwon: "}]},{"type":"element","tag":"span","props":{"class":"ct-5b0ad2"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5b0ad2"},"children":[{"type":"text","value":"initialRouteName"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-0f7569"},"children":[{"type":"text","value":"'Login'"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-42ddbd"},"children":[{"type":"text","value":"Stack.Screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5b0ad2"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-0f7569"},"children":[{"type":"text","value":"\"Login\""}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5b0ad2"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":"Login"}]},{"type":"element","tag":"span","props":{"class":"ct-8d4f3d"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":" />"}]}]},{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":""}]},{"type":"element","tag":"span","props":{"class":"ct-42ddbd"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-2103dc"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Screen component to load for the given name."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Navigation should be centralized within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/core/navigation"}]},{"type":"text","value":" directory. This is where the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" library is configured and where the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Stack"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For more details on the available options for configuring a Stack, please refer to the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" documentation, and more specifically, the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/#api-definition","rel":["nofollow"]},"children":[{"type":"text","value":"API Definition"}]},{"type":"text","value":"."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-0f7569{color:#0A3069}\n.ct-8d4f3d{color:#CF222E}\n.ct-5b0ad2{color:#0550AE}\n.ct-42ddbd{color:#116329}\n.ct-2103dc{color:#24292F}\n.dark .ct-2103dc{color:#C9D1D9}\n.dark .ct-42ddbd{color:#7EE787}\n.dark .ct-5b0ad2{color:#79C0FF}\n.dark .ct-8d4f3d{color:#FF7B72}\n.dark .ct-0f7569{color:#A5D6FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"},{"id":"routing","depth":2,"text":"Routing"}]}},"_type":"markdown","_id":"content:4.mobile:4.features:4.navigation.md","_source":"content","_file":"4.mobile/4.features/4.navigation.md","_extension":"md"},"hash":"5EJ6zNZuYJ"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/5.stores.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/5.stores.md
new file mode 100644
index 00000000..303e18af
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/5.stores.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores / Context","description":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stores-context"},"children":[{"type":"text","value":"Stores / Context"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add store \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e441ea"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"store"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d955b9"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"store-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-d955b9"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"example"},"children":[{"type":"text","value":"Example"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile add store auth\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e441ea"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"store"}]},{"type":"element","tag":"span","props":{"class":"ct-c7af6e"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e5270b"},"children":[{"type":"text","value":"auth"}]}]}]}]}]},{"type":"element","tag":"h4","props":{"id":"output-file"},"children":[{"type":"text","value":"Output File"}]},{"type":"element","tag":"code","props":{"code":"src/contexts/auth.context.tsx\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"div","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"src/contexts/auth.context.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Type"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"ContextProvider"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"Consumer"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Allows components to subscribe to changes in the global state endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"with"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when Class-based components would like to consume data from the a context"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"use"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when function-based components would like to consume data from the a contextresponse."}]}]}]}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":" - This is the provided name for the context when created using the CLI's "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"add"}]},{"type":"text","value":" command above."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"HOC (High-Order Component)"}]},{"type":"text","value":" - a higher-order component is a function that takes a component and returns a new enhanced component."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-d955b9{color:#CF222E}\n.ct-e5270b{color:#0A3069}\n.ct-c7af6e{color:#24292F}\n.ct-e441ea{color:#953800}\n.dark .ct-e441ea{color:#FFA657}\n.dark .ct-c7af6e{color:#C9D1D9}\n.dark .ct-e5270b{color:#A5D6FF}\n.dark .ct-d955b9{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:4.mobile:4.features:5.stores.md","_source":"content","_file":"4.mobile/4.features/5.stores.md","_extension":"md"},"hash":"XGIzcNaMru"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/_dir.yml
new file mode 100644
index 00000000..f45d1f01
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/4.features/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:4.mobile:4.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/4.features/_dir.yml","_extension":"yml"},"hash":"l5Mk8bRYMH"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/1.testing.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/1.testing.md
new file mode 100644
index 00000000..29059670
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/1.testing.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.mobile:5.testing:1.testing.md","_source":"content","_file":"4.mobile/5.testing/1.testing.md","_extension":"md"},"hash":"McC7aVpqG2"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/_dir.yml
new file mode 100644
index 00000000..e8c43d8f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/5.testing/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:4.mobile:5.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/5.testing/_dir.yml","_extension":"yml"},"hash":"l5Mk8bRYMH"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/1.deployment.md b/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/1.deployment.md
new file mode 100644
index 00000000..6b649b33
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/1.deployment.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.mobile:6.deployment:1.deployment.md","_source":"content","_file":"4.mobile/6.deployment/1.deployment.md","_extension":"md"},"hash":"OyNp6ctxdD"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/_dir.yml
new file mode 100644
index 00000000..599a1460
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/6.deployment/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/deployment/_dir","_dir":"deployment","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:4.mobile:6.deployment:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/6.deployment/_dir.yml","_extension":"yml"},"hash":"l5Mk8bRYMH"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/4.mobile/_dir.yml b/docs/.nuxt/content-cache/parsed/content/4.mobile/_dir.yml
new file mode 100644
index 00000000..d67a6996
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/4.mobile/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/mobile/_dir","_dir":"mobile","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:4.mobile:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.mobile/_dir.yml","_extension":"yml"},"hash":"l5Mk8bRYMH"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/1.introduction.md b/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/1.introduction.md
new file mode 100644
index 00000000..a3860e80
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/1.introduction.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.spectre:1.getting-started:1.introduction.md","_source":"content","_file":"5.spectre/1.getting-started/1.introduction.md","_extension":"md"},"hash":"4eaPVpJxuB"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/_dir.yml
new file mode 100644
index 00000000..9dded7ab
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/5.spectre/1.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/spectre/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:cube","_id":"content:5.spectre:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.spectre/1.getting-started/_dir.yml","_extension":"yml"},"hash":"ZJlqS0zbIJ"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/5.spectre/_dir.yml b/docs/.nuxt/content-cache/parsed/content/5.spectre/_dir.yml
new file mode 100644
index 00000000..c0dcb96f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/5.spectre/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/spectre/_dir","_dir":"spectre","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:bookmark-alt","_id":"content:5.spectre:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.spectre/_dir.yml","_extension":"yml"},"hash":"ouSoEXLEVh"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/2.introduction.md b/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/2.introduction.md
new file mode 100644
index 00000000..1015ef99
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/2.introduction.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_6.design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_6.design:1.getting-started:2.introduction.md","_source":"content","_file":"_6.design/1.getting-started/2.introduction.md","_extension":"md"},"hash":"6sAb4ULfbp"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/_dir.yml
new file mode 100644
index 00000000..5c6d9f76
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_6.design/1.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_6.design/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:_6.design:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"_6.design/1.getting-started/_dir.yml","_extension":"yml"},"hash":"XeTwfsdzhp"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_6.design/_dir.yml b/docs/.nuxt/content-cache/parsed/content/_6.design/_dir.yml
new file mode 100644
index 00000000..5fb1ceec
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_6.design/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_6.design/_dir","_dir":"_6.design","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:_6.design:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"_6.design/_dir.yml","_extension":"yml"},"hash":"A78Uumo9uS"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/2.introduction.md b/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/2.introduction.md
new file mode 100644
index 00000000..8409fb5f
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/2.introduction.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_7.iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"_7.IAC/1.getting-started/2.introduction.md","_extension":"md"},"hash":"gYJIrZ2uzF"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/_dir.yml b/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/_dir.yml
new file mode 100644
index 00000000..fab84470
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_7.IAC/1.getting-started/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_7.iac/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:_7.IAC:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"_7.IAC/1.getting-started/_dir.yml","_extension":"yml"},"hash":"A78Uumo9uS"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_7.IAC/_dir.yml b/docs/.nuxt/content-cache/parsed/content/_7.IAC/_dir.yml
new file mode 100644
index 00000000..3559452b
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_7.IAC/_dir.yml
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_7.iac/_dir","_dir":"_7.iac","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:_7.IAC:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"_7.IAC/_dir.yml","_extension":"yml"},"hash":"H9Eu9HwZ2V"}
\ No newline at end of file
diff --git a/docs/.nuxt/content-cache/parsed/content/_partials/hello-world.md b/docs/.nuxt/content-cache/parsed/content/_partials/hello-world.md
new file mode 100644
index 00000000..97ade27d
--- /dev/null
+++ b/docs/.nuxt/content-cache/parsed/content/_partials/hello-world.md
@@ -0,0 +1 @@
+{"parsed":{"_path":"/_partials/hello-world","_dir":"_partials","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"I am a partial","description":"With some Hello World text.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"i-am-a-partial"},"children":[{"type":"text","value":"I am a partial"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With some Hello World text."}]},{"type":"element","tag":"button-link","props":{":blank":"true","class":"mr-2","href":"https://stackblitz.com/github/nuxt/starter/tree/content"},"children":[{"type":"text","value":"Play on StackBlitz"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_partials:hello-world.md","_source":"content","_file":"_partials/hello-world.md","_extension":"md"},"hash":"yOa6d6cK4r"}
\ No newline at end of file
diff --git a/docs/.nuxt/dev/index.mjs b/docs/.nuxt/dev/index.mjs
new file mode 100644
index 00000000..da1d12d6
--- /dev/null
+++ b/docs/.nuxt/dev/index.mjs
@@ -0,0 +1,4375 @@
+globalThis._importMeta_={url:import.meta.url,env:process.env};import 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/node-fetch-native/dist/polyfill.mjs';
+import { Server } from 'node:http';
+import { tmpdir } from 'node:os';
+import { join as join$1 } from 'node:path';
+import { mkdirSync } from 'node:fs';
+import { parentPort, threadId } from 'node:worker_threads';
+import { provider, isWindows } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/std-env/dist/index.mjs';
+import { defineEventHandler, handleCacheHeaders, createEvent, eventHandler, setHeaders, sendRedirect, proxyRequest, setResponseStatus, getRequestHeader, getRequestHeaders, setResponseHeader, getQuery, getCookie, createError, createApp, createRouter as createRouter$1, toNodeListener, fetchWithEvent, lazyEventHandler } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/h3/dist/index.mjs';
+import { createRenderer } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/vue-bundle-renderer/dist/runtime.mjs';
+import devalue from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/@nuxt/devalue/dist/devalue.mjs';
+import { renderToString } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/vue/server-renderer/index.mjs';
+import { parseURL, withoutBase, joinURL, withQuery, withLeadingSlash, withoutTrailingSlash, isRelative } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/ufo/dist/index.mjs';
+import destr from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/destr/dist/index.mjs';
+import { snakeCase, kebabCase, pascalCase, camelCase } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/scule/dist/index.mjs';
+import defu, { defuFn, defu as defu$1 } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/defu/dist/defu.mjs';
+import { createFetch as createFetch$1, Headers } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/ofetch/dist/node.mjs';
+import { createCall, createFetch } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unenv/runtime/fetch/index.mjs';
+import { createHooks } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/hookable/dist/index.mjs';
+import { hash } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/ohash/dist/index.mjs';
+import { createStorage, prefixStorage } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unstorage/dist/index.mjs';
+import unstorage_47drivers_47fs from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unstorage/drivers/fs.mjs';
+import { toRouteMatcher, createRouter } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/radix3/dist/index.mjs';
+import { graphql } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/@octokit/graphql/dist-node/index.js';
+import remarkGithub from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-github/index.js';
+import { extname, join } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/pathe/dist/index.mjs';
+import { unified } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unified/index.js';
+import { toString } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/mdast-util-to-string/index.js';
+import { preprocess } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/micromark/dev/lib/preprocess.js';
+import { postprocess } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/micromark/dev/lib/postprocess.js';
+import { stringifyPosition } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unist-util-stringify-position/index.js';
+import { markdownLineEnding, markdownSpace } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/micromark-util-character/dev/index.js';
+import { push, splice } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/micromark-util-chunked/dev/index.js';
+import { resolveAll } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/micromark-util-resolve-all/index.js';
+import remarkEmoji from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-emoji/index.js';
+import rehypeSlug from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/rehype-slug/index.js';
+import remarkSqueezeParagraphs from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-squeeze-paragraphs/index.js';
+import rehypeExternalLinks from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/rehype-external-links/index.js';
+import remarkGfm from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-gfm/index.js';
+import rehypeSortAttributeValues from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/rehype-sort-attribute-values/index.js';
+import rehypeSortAttributes from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/rehype-sort-attributes/index.js';
+import rehypeRaw from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/rehype-raw/index.js';
+import remarkMDC, { parseFrontMatter } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-mdc/dist/index.mjs';
+import remarkParse from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-parse/index.js';
+import remark2rehype from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/remark-rehype/index.js';
+import { all } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/mdast-util-to-hast/index.js';
+import { detab } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/detab/index.js';
+import { u } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unist-builder/index.js';
+import { encode } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/mdurl/index.js';
+import slugify from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/slugify/slugify.js';
+import { position } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unist-util-position/index.js';
+import { visit } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unist-util-visit/index.js';
+import { BUNDLED_LANGUAGES, BUNDLED_THEMES, getHighlighter } from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/shiki-es/dist/shiki.node.mjs';
+import consola from 'file://C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/node_modules/unenv/runtime/npm/consola.mjs';
+
+const inlineAppConfig = {};
+
+
+
+const appConfig = defuFn(inlineAppConfig);
+
+const _runtimeConfig = {"app":{"baseURL":"/","buildAssetsDir":"/_nuxt/","cdnURL":""},"nitro":{"envPrefix":"NUXT_","routeRules":{"/__nuxt_error":{"cache":false}}},"public":{"algolia":{"applicationId":"","apiKey":"","langAttribute":"lang","docSearch":{"indexName":"frontier"}},"github":{"api":"https://api.github.com","owner":"realdecoy","branch":"main","repo":"frontier","token":"","disableCache":false,"parseContents":true,"maxContributors":100},"content":{"locales":[],"defaultLocale":"","integrity":"","experimental":{"stripQueryParameters":false,"clientDB":false},"api":{"baseURL":"/api/_content"},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"tags":{"p":"prose-p","a":"prose-a","blockquote":"prose-blockquote","code-inline":"prose-code-inline","code":"prose-code","em":"prose-em","h1":"prose-h1","h2":"prose-h2","h3":"prose-h3","h4":"prose-h4","h5":"prose-h5","h6":"prose-h6","hr":"prose-hr","img":"prose-img","ul":"prose-ul","ol":"prose-ol","li":"prose-li","strong":"prose-strong","table":"prose-table","thead":"prose-thead","tbody":"prose-tbody","td":"prose-td","th":"prose-th","tr":"prose-tr"},"highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"wsUrl":"ws://localhost:4000/","documentDriven":{"page":true,"navigation":true,"surround":true,"globals":{},"layoutFallbacks":["theme"],"injectPage":true},"host":"","trailingSlash":false,"anchorLinks":{"depth":4,"exclude":[1]}}},"content":{"cacheVersion":2,"cacheIntegrity":"4QSCmZ1KSX","transformers":[],"base":"","api":{"baseURL":"/api/_content"},"watch":{"ws":{"port":{"port":4000,"portRange":[4000,4040]},"hostname":"localhost","showURL":false}},"sources":{},"ignores":["\\.","-"],"locales":[],"defaultLocale":"","highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"markdown":{"tags":{"p":"prose-p","a":"prose-a","blockquote":"prose-blockquote","code-inline":"prose-code-inline","code":"prose-code","em":"prose-em","h1":"prose-h1","h2":"prose-h2","h3":"prose-h3","h4":"prose-h4","h5":"prose-h5","h6":"prose-h6","hr":"prose-hr","img":"prose-img","ul":"prose-ul","ol":"prose-ol","li":"prose-li","strong":"prose-strong","table":"prose-table","thead":"prose-thead","tbody":"prose-tbody","td":"prose-td","th":"prose-th","tr":"prose-tr"},"anchorLinks":{"depth":4,"exclude":[1]},"remarkPlugins":{"remark-github":{"repository":"realdecoy/frontier"}},"rehypePlugins":{}},"yaml":{},"csv":{"delimeter":",","json":true},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"documentDriven":true,"experimental":{"clientDB":false,"stripQueryParameters":false},"host":"https://content.nuxtjs.org"},"github":{"api":"https://api.github.com","owner":"realdecoy","branch":"main","repo":"frontier","token":"","disableCache":false,"parseContents":true,"maxContributors":100},"pinceau":{"studio":true,"outputDir":"C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/.nuxt/pinceau/"},"appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size. Set to false to disable the sizing of icon in style.","tags":["@studioIcon material-symbols:format-size-rounded"],"tsType":"string | false","id":"#appConfig/nuxtIcon/size","default":"1em","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"1em","class":"","aliases":{}}},"prose":{"title":"Prose configuration from Nuxt Typography","description":"","tags":["@studioIcon material-symbols:short-text-rounded","@studioInput icon"],"id":"#appConfig/prose","properties":{"copyButton":{"title":"Copy button (used in code blocks)","description":"","tags":["@studioIcon material-symbols:content-copy"],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"Icon displayed to copy","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"Icon displayed when copied","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"Default configuration for all headings (h1, h2, h3, h4, h5 and h6)","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"Default icon for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"First heading configuration","description":"","tags":["@studioIcon material-symbols:format-h1"],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"Second heading configuration","description":"","tags":["@studioIcon material-symbols:format-h2"],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"Third heading configuration","description":"","tags":["@studioIcon material-symbols:format-h3"],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"Fourth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h4"],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"Fifth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h5"],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"Sixth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h6"],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"docus":{"title":"Docus theme configuration.","description":"","tags":["@studioIcon material-symbols:docs"],"id":"#appConfig/docus","properties":{"title":{"title":"Website title, used as header default title and meta title.","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/title","default":"Docus","type":"string"},"titleTemplate":{"title":"The website title template, to overwrite the default one.","description":"","tags":[],"id":"#appConfig/docus/titleTemplate","default":"%s · Docus","type":"string"},"description":{"title":"Website description, used for meta description.","description":"","tags":["@studioIcon material-symbols:description"],"id":"#appConfig/docus/description","default":"The best place to start your documentation.","type":"string"},"image":{"title":"Cover image.","description":"","tags":["@example '/cover.jpg'","@studioIcon dashicons:cover-image","@studioInput file"],"id":"#appConfig/docus/image","default":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","type":"string"},"socials":{"title":"Social links","description":"Will be used in AppSocialIcons component.","tags":["@studioIcon material-symbols:share-outline"],"id":"#appConfig/docus/socials","properties":{"twitter":{"title":"Twitter social handle","description":"","tags":["@example 'nuxt_js'","@studioIcon simple-icons:twitter"],"id":"#appConfig/docus/socials/twitter","default":"","type":"string"},"github":{"title":"GitHub org or repository","description":"","tags":["@example 'nuxt/framework'","@studioIcon simple-icons:github"],"id":"#appConfig/docus/socials/github","default":"","type":"string"},"facebook":{"title":"Facebook page url","description":"","tags":["@example https://www.facebook.com/groups/nuxtjs","@studioIcon simple-icons:facebook"],"id":"#appConfig/docus/socials/facebook","default":"","type":"string"},"instagram":{"title":"Instagram page url","description":"","tags":["@example https://www.instagram.com/wearenuxt","@studioIcon simple-icons:instagram"],"id":"#appConfig/docus/socials/instagram","default":"","type":"string"},"youtube":{"title":"Instagram page url","description":"","tags":["@example https://www.youtube.com/@NuxtLabs","@studioIcon simple-icons:youtube"],"id":"#appConfig/docus/socials/youtube","default":"","type":"string"},"medium":{"title":"Medium page url","description":"","tags":["@example https://medium.com/nuxt","@studioIcon simple-icons:medium"],"id":"#appConfig/docus/socials/medium","default":"","type":"string"}},"type":"object","default":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""}},"layout":{"title":"Theme layout configuration.","description":"","tags":["@studioIcon tabler:arrow-autofit-width"],"tsType":"'default'|'page'","id":"#appConfig/docus/layout","default":"default","type":"string"},"aside":{"title":"Aside navigation configuration.","description":"","tags":["@studioIcon fluent:document-page-24-regular"],"id":"#appConfig/docus/aside","properties":{"level":{"title":"Aside navigation level","description":"Use 0 to disable all nesting. Use 1 and more to display nested navigation in header and aside navigation.","tags":[],"id":"#appConfig/docus/aside/level","default":0,"type":"number"},"collapsed":{"title":"Specify if default collapsibles state globally for aside navigation.","description":"","tags":[],"id":"#appConfig/docus/aside/collapsed","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from aside navigation.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/aside/exclude","default":[],"type":"array","items":{"type":"any"}}},"type":"object","default":{"level":0,"collapsed":false,"exclude":[]}},"header":{"title":"Header configuration.","description":"","tags":["@studioIcon fluent:document-header-24-regular"],"id":"#appConfig/docus/header","properties":{"title":{"title":"Website title","description":"Title to be displayed in header or as aria-label if logo is defined.\nDefault to docus.title","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/header/title","default":"","type":"string"},"logo":{"title":"Logo configuration","description":"Boolean to disable or use the `Logo.vue` component.\nString to be used as a name of a component.","tags":["@example 'MyLogo'","@studioInput boolean"],"id":"#appConfig/docus/header/logo","default":false,"type":"boolean"},"showLinkIcon":{"title":"Header links","description":"Toggle links icons in the header.","tags":[],"id":"#appConfig/docus/header/showLinkIcon","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from header links.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/header/exclude","default":[],"type":"array","items":{"type":"any"}},"fluid":{"title":"Makes the content of the header fluid.","description":"","tags":[],"id":"#appConfig/docus/header/fluid","default":false,"type":"boolean"}},"type":"object","default":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false}},"main":{"title":"Main content configuration.","description":"","tags":["@studioIcon fluent:document-header-footer-24-filled"],"id":"#appConfig/docus/main","properties":{"fluid":{"title":"Makes the content of the main container fluid.","description":"","tags":[],"id":"#appConfig/docus/main/fluid","default":false,"type":"boolean"},"padded":{"title":"Makes the content of the main container padded.","description":"","tags":[],"id":"#appConfig/docus/main/padded","default":true,"type":"boolean"}},"type":"object","default":{"fluid":false,"padded":true}},"footer":{"title":"Footer configuration","description":"","tags":["@studioIcon fluent:document-footer-24-regular"],"id":"#appConfig/docus/footer","properties":{"credits":{"title":"Website credits configuration.","description":"","tags":["@studioIcon material-symbols:copyright"],"tsType":"false|{icon: string, text: string, href: string}","id":"#appConfig/docus/footer/credits","properties":{"icon":{"title":"Icon to show on credits","description":"","tags":["@formtype Icon"],"id":"#appConfig/docus/footer/credits/icon","default":"IconDocus","type":"string"},"text":{"type":"string","id":"#appConfig/docus/footer/credits/text","default":"Powered by Docus"},"href":{"type":"string","id":"#appConfig/docus/footer/credits/href","default":"https://docus.dev"}},"type":"object","default":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"}},"textLinks":{"type":"array","items":{"type":"object","required":["text","href"],"properties":{"href":{"type":"string","description":"URL when clicking the link"},"text":{"type":"string","description":"Text of the link"},"target":{"type":"string","description":"Target attribute of the link"}}},"title":"Text links","description":"Will be added into center section of the footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/textLinks"},"iconLinks":{"type":"array","items":{"type":"object","required":["icon","href"],"properties":{"icon":{"type":"string","description":"Icon name"},"href":{"type":"string","description":"Link when clicking on the icon"},"label":{"type":"string","description":"Label of the icon"}}},"title":"Icon links","description":"Icons to be added to Social Icons in footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/iconLinks"},"fluid":{"title":"Makes the content of the footer fluid.","description":"","tags":[],"id":"#appConfig/docus/footer/fluid","default":true,"type":"boolean"}},"type":"object","default":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true}},"github":{"title":"GitHub integration","description":"Configure the Edit on Github integration.","tags":["@studioIcon simple-icons:github"],"id":"#appConfig/docus/github","properties":{"dir":{"title":"Directory","description":"Your GitHub repository root directory.","tags":[],"id":"#appConfig/docus/github/dir","default":"","type":"string"},"branch":{"title":"Branch","description":"Your GitHub repository branch.","tags":[],"id":"#appConfig/docus/github/branch","default":"","type":"string"},"repo":{"title":"Repository","description":"Your GitHub repository name.","tags":[],"id":"#appConfig/docus/github/repo","default":"","type":"string"},"owner":{"title":"Owner","description":"Your GitHub repository owner.","tags":[],"id":"#appConfig/docus/github/owner","default":"","type":"string"},"edit":{"title":"EditOnGithub","description":"Display EditOnGithub button.","tags":[],"id":"#appConfig/docus/github/edit","default":false,"type":"boolean"}},"type":"object","default":{"dir":"","branch":"","repo":"","owner":"","edit":false}}},"type":"object","default":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"type":"object","default":{"nuxtIcon":{"size":"1em","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"default":{"nuxtIcon":{"size":"1em","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}}};
+const ENV_PREFIX = "NITRO_";
+const ENV_PREFIX_ALT = _runtimeConfig.nitro.envPrefix ?? process.env.NITRO_ENV_PREFIX ?? "_";
+overrideConfig$1(_runtimeConfig);
+const runtimeConfig = deepFreeze(_runtimeConfig);
+const useRuntimeConfig = () => runtimeConfig;
+deepFreeze(appConfig);
+function getEnv(key) {
+ const envKey = snakeCase(key).toUpperCase();
+ return destr(
+ process.env[ENV_PREFIX + envKey] ?? process.env[ENV_PREFIX_ALT + envKey]
+ );
+}
+function isObject$1(input) {
+ return typeof input === "object" && !Array.isArray(input);
+}
+function overrideConfig$1(obj, parentKey = "") {
+ for (const key in obj) {
+ const subKey = parentKey ? `${parentKey}_${key}` : key;
+ const envValue = getEnv(subKey);
+ if (isObject$1(obj[key])) {
+ if (isObject$1(envValue)) {
+ obj[key] = { ...obj[key], ...envValue };
+ }
+ overrideConfig$1(obj[key], subKey);
+ } else {
+ obj[key] = envValue ?? obj[key];
+ }
+ }
+}
+function deepFreeze(object) {
+ const propNames = Object.getOwnPropertyNames(object);
+ for (const name of propNames) {
+ const value = object[name];
+ if (value && typeof value === "object") {
+ deepFreeze(value);
+ }
+ }
+ return Object.freeze(object);
+}
+
+const serverAssets = [{"baseName":"server","dir":"C:/Users/AVidal/Documents/Projects/SEPA/frontier/docs/server/assets"}];
+
+const assets = createStorage();
+
+for (const asset of serverAssets) {
+ assets.mount(asset.baseName, unstorage_47drivers_47fs({ base: asset.dir }));
+}
+
+const storage = createStorage({});
+
+storage.mount('/assets', assets);
+
+storage.mount('pinceau', unstorage_47drivers_47fs({"driver":"fs","base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\.nuxt\\pinceau\\theme","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('content:source:content', unstorage_47drivers_47fs({"name":"content:source:content","driver":"fs","base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\content","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('cache:content', unstorage_47drivers_47fs({"driver":"fs","base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\.nuxt\\content-cache","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('root', unstorage_47drivers_47fs({"driver":"fs","readOnly":true,"base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('src', unstorage_47drivers_47fs({"driver":"fs","readOnly":true,"base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\server","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('build', unstorage_47drivers_47fs({"driver":"fs","readOnly":false,"base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\.nuxt","ignore":["**/node_modules/**","**/.git/**"]}));
+storage.mount('cache', unstorage_47drivers_47fs({"driver":"fs","readOnly":false,"base":"C:\\Users\\AVidal\\Documents\\Projects\\SEPA\\frontier\\docs\\.nuxt\\cache","ignore":["**/node_modules/**","**/.git/**"]}));
+
+function useStorage(base = "") {
+ return base ? prefixStorage(storage, base) : storage;
+}
+
+const defaultCacheOptions = {
+ name: "_",
+ base: "/cache",
+ swr: true,
+ maxAge: 1
+};
+function defineCachedFunction(fn, opts = {}) {
+ opts = { ...defaultCacheOptions, ...opts };
+ const pending = {};
+ const group = opts.group || "nitro/functions";
+ const name = opts.name || fn.name || "_";
+ const integrity = hash([opts.integrity, fn, opts]);
+ const validate = opts.validate || (() => true);
+ async function get(key, resolver, shouldInvalidateCache) {
+ const cacheKey = [opts.base, group, name, key + ".json"].filter(Boolean).join(":").replace(/:\/$/, ":index");
+ const entry = await useStorage().getItem(cacheKey) || {};
+ const ttl = (opts.maxAge ?? opts.maxAge ?? 0) * 1e3;
+ if (ttl) {
+ entry.expires = Date.now() + ttl;
+ }
+ const expired = shouldInvalidateCache || entry.integrity !== integrity || ttl && Date.now() - (entry.mtime || 0) > ttl || !validate(entry);
+ const _resolve = async () => {
+ const isPending = pending[key];
+ if (!isPending) {
+ if (entry.value !== void 0 && (opts.staleMaxAge || 0) >= 0 && opts.swr === false) {
+ entry.value = void 0;
+ entry.integrity = void 0;
+ entry.mtime = void 0;
+ entry.expires = void 0;
+ }
+ pending[key] = Promise.resolve(resolver());
+ }
+ try {
+ entry.value = await pending[key];
+ } catch (error) {
+ if (!isPending) {
+ delete pending[key];
+ }
+ throw error;
+ }
+ if (!isPending) {
+ entry.mtime = Date.now();
+ entry.integrity = integrity;
+ delete pending[key];
+ if (validate(entry)) {
+ useStorage().setItem(cacheKey, entry).catch((error) => console.error("[nitro] [cache]", error));
+ }
+ }
+ };
+ const _resolvePromise = expired ? _resolve() : Promise.resolve();
+ if (opts.swr && entry.value) {
+ _resolvePromise.catch(console.error);
+ return entry;
+ }
+ return _resolvePromise.then(() => entry);
+ }
+ return async (...args) => {
+ const shouldBypassCache = opts.shouldBypassCache?.(...args);
+ if (shouldBypassCache) {
+ return fn(...args);
+ }
+ const key = await (opts.getKey || getKey)(...args);
+ const shouldInvalidateCache = opts.shouldInvalidateCache?.(...args);
+ const entry = await get(key, () => fn(...args), shouldInvalidateCache);
+ let value = entry.value;
+ if (opts.transform) {
+ value = await opts.transform(entry, ...args) || value;
+ }
+ return value;
+ };
+}
+const cachedFunction = defineCachedFunction;
+function getKey(...args) {
+ return args.length > 0 ? hash(args, {}) : "";
+}
+function escapeKey(key) {
+ return key.replace(/[^\dA-Za-z]/g, "");
+}
+function defineCachedEventHandler(handler, opts = defaultCacheOptions) {
+ const _opts = {
+ ...opts,
+ getKey: async (event) => {
+ const key = await opts.getKey?.(event);
+ if (key) {
+ return escapeKey(key);
+ }
+ const url = event.node.req.originalUrl || event.node.req.url;
+ const friendlyName = escapeKey(decodeURI(parseURL(url).pathname)).slice(
+ 0,
+ 16
+ );
+ const urlHash = hash(url);
+ return `${friendlyName}.${urlHash}`;
+ },
+ validate: (entry) => {
+ if (entry.value.code >= 400) {
+ return false;
+ }
+ if (entry.value.body === void 0) {
+ return false;
+ }
+ return true;
+ },
+ group: opts.group || "nitro/handlers",
+ integrity: [opts.integrity, handler]
+ };
+ const _cachedHandler = cachedFunction(
+ async (incomingEvent) => {
+ const reqProxy = cloneWithProxy(incomingEvent.node.req, { headers: {} });
+ const resHeaders = {};
+ let _resSendBody;
+ const resProxy = cloneWithProxy(incomingEvent.node.res, {
+ statusCode: 200,
+ getHeader(name) {
+ return resHeaders[name];
+ },
+ setHeader(name, value) {
+ resHeaders[name] = value;
+ return this;
+ },
+ getHeaderNames() {
+ return Object.keys(resHeaders);
+ },
+ hasHeader(name) {
+ return name in resHeaders;
+ },
+ removeHeader(name) {
+ delete resHeaders[name];
+ },
+ getHeaders() {
+ return resHeaders;
+ },
+ end(chunk, arg2, arg3) {
+ if (typeof chunk === "string") {
+ _resSendBody = chunk;
+ }
+ if (typeof arg2 === "function") {
+ arg2();
+ }
+ if (typeof arg3 === "function") {
+ arg3();
+ }
+ return this;
+ },
+ write(chunk, arg2, arg3) {
+ if (typeof chunk === "string") {
+ _resSendBody = chunk;
+ }
+ if (typeof arg2 === "function") {
+ arg2();
+ }
+ if (typeof arg3 === "function") {
+ arg3();
+ }
+ return this;
+ },
+ writeHead(statusCode, headers2) {
+ this.statusCode = statusCode;
+ if (headers2) {
+ for (const header in headers2) {
+ this.setHeader(header, headers2[header]);
+ }
+ }
+ return this;
+ }
+ });
+ const event = createEvent(reqProxy, resProxy);
+ event.context = incomingEvent.context;
+ const body = await handler(event) || _resSendBody;
+ const headers = event.node.res.getHeaders();
+ headers.etag = headers.Etag || headers.etag || `W/"${hash(body)}"`;
+ headers["last-modified"] = headers["Last-Modified"] || headers["last-modified"] || (/* @__PURE__ */ new Date()).toUTCString();
+ const cacheControl = [];
+ if (opts.swr) {
+ if (opts.maxAge) {
+ cacheControl.push(`s-maxage=${opts.maxAge}`);
+ }
+ if (opts.staleMaxAge) {
+ cacheControl.push(`stale-while-revalidate=${opts.staleMaxAge}`);
+ } else {
+ cacheControl.push("stale-while-revalidate");
+ }
+ } else if (opts.maxAge) {
+ cacheControl.push(`max-age=${opts.maxAge}`);
+ }
+ if (cacheControl.length > 0) {
+ headers["cache-control"] = cacheControl.join(", ");
+ }
+ const cacheEntry = {
+ code: event.node.res.statusCode,
+ headers,
+ body
+ };
+ return cacheEntry;
+ },
+ _opts
+ );
+ return defineEventHandler(async (event) => {
+ if (opts.headersOnly) {
+ if (handleCacheHeaders(event, { maxAge: opts.maxAge })) {
+ return;
+ }
+ return handler(event);
+ }
+ const response = await _cachedHandler(event);
+ if (event.node.res.headersSent || event.node.res.writableEnded) {
+ return response.body;
+ }
+ if (handleCacheHeaders(event, {
+ modifiedTime: new Date(response.headers["last-modified"]),
+ etag: response.headers.etag,
+ maxAge: opts.maxAge
+ })) {
+ return;
+ }
+ event.node.res.statusCode = response.code;
+ for (const name in response.headers) {
+ event.node.res.setHeader(name, response.headers[name]);
+ }
+ return response.body;
+ });
+}
+function cloneWithProxy(obj, overrides) {
+ return new Proxy(obj, {
+ get(target, property, receiver) {
+ if (property in overrides) {
+ return overrides[property];
+ }
+ return Reflect.get(target, property, receiver);
+ },
+ set(target, property, value, receiver) {
+ if (property in overrides) {
+ overrides[property] = value;
+ return true;
+ }
+ return Reflect.set(target, property, value, receiver);
+ }
+ });
+}
+const cachedEventHandler = defineCachedEventHandler;
+
+const config = useRuntimeConfig();
+const _routeRulesMatcher = toRouteMatcher(
+ createRouter({ routes: config.nitro.routeRules })
+);
+function createRouteRulesHandler() {
+ return eventHandler((event) => {
+ const routeRules = getRouteRules(event);
+ if (routeRules.headers) {
+ setHeaders(event, routeRules.headers);
+ }
+ if (routeRules.redirect) {
+ return sendRedirect(
+ event,
+ routeRules.redirect.to,
+ routeRules.redirect.statusCode
+ );
+ }
+ if (routeRules.proxy) {
+ let target = routeRules.proxy.to;
+ if (target.endsWith("/**")) {
+ let targetPath = event.path;
+ const strpBase = routeRules.proxy._proxyStripBase;
+ if (strpBase) {
+ targetPath = withoutBase(targetPath, strpBase);
+ }
+ target = joinURL(target.slice(0, -3), targetPath);
+ }
+ return proxyRequest(event, target, {
+ fetch: $fetch.raw,
+ ...routeRules.proxy
+ });
+ }
+ });
+}
+function getRouteRules(event) {
+ event.context._nitro = event.context._nitro || {};
+ if (!event.context._nitro.routeRules) {
+ const path = new URL(event.node.req.url, "http://localhost").pathname;
+ event.context._nitro.routeRules = getRouteRulesForPath(
+ withoutBase(path, useRuntimeConfig().app.baseURL)
+ );
+ }
+ return event.context._nitro.routeRules;
+}
+function getRouteRulesForPath(path) {
+ return defu({}, ..._routeRulesMatcher.matchAll(path).reverse());
+}
+
+function defineRenderHandler(handler) {
+ return eventHandler(async (event) => {
+ if (event.node.req.url.endsWith("/favicon.ico")) {
+ event.node.res.setHeader("Content-Type", "image/x-icon");
+ event.node.res.end(
+ "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
+ );
+ return;
+ }
+ const response = await handler(event);
+ if (!response) {
+ if (!event.node.res.writableEnded) {
+ event.node.res.statusCode = event.node.res.statusCode === 200 ? 500 : event.node.res.statusCode;
+ event.node.res.end(
+ "No response returned from render handler: " + event.node.req.url
+ );
+ }
+ return;
+ }
+ const nitroApp = useNitroApp();
+ await nitroApp.hooks.callHook("render:response", response, { event });
+ if (!event.node.res.headersSent && response.headers) {
+ for (const header in response.headers) {
+ event.node.res.setHeader(header, response.headers[header]);
+ }
+ setResponseStatus(event, response.statusCode, response.statusMessage);
+ }
+ return typeof response.body === "string" ? response.body : JSON.stringify(response.body);
+ });
+}
+
+const nitro = (async function(nitro) {
+ nitro.hooks.hook("render:html", async (htmlContext, { event }) => {
+ const theme = await useStorage().getItem("pinceau:index.css");
+ const pinceauContent = event?.pinceauContent || { theme: void 0, runtime: void 0 };
+ if (!theme?.runtime) {
+ htmlContext.head.splice(2, 0, ``);
+ }
+ if (!theme?.theme) {
+ htmlContext.head.splice(2, 0, ``);
+ }
+ });
+});
+
+const script = "\"use strict\";const w=window,de=document.documentElement,knownColorSchemes=[\"dark\",\"light\"],preference=window.localStorage.getItem(\"nuxt-color-mode\")||\"dark\";let value=preference===\"system\"?getColorScheme():preference;const forcedColorMode=de.getAttribute(\"data-color-mode-forced\");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w[\"__NUXT_COLOR_MODE__\"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=\"\"+e+\"\",t=\"theme\";de.classList?de.classList.add(o):de.className+=\" \"+o,t&&de.setAttribute(\"data-\"+t,e)}function removeColorScheme(e){const o=\"\"+e+\"\",t=\"theme\";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,\"g\"),\"\"),t&&de.removeAttribute(\"data-\"+t)}function prefersColorScheme(e){return w.matchMedia(\"(prefers-color-scheme\"+e+\")\")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme(\"\").media!==\"not all\"){for(const e of knownColorSchemes)if(prefersColorScheme(\":\"+e).matches)return e}return\"light\"}\n";
+
+const _KdDja5Z6ZE = (function(nitro) {
+ nitro.hooks.hook("render:html", (htmlContext) => {
+ htmlContext.head.push(`' +
+((__t = ( messages.statusCode )) == null ? '' : __t) +
+'
' +
+((__t = ( messages.description )) == null ? '' : __t) +
+'
' +
+((__t = ( messages.stack )) == null ? '' : __t) +
+'