Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/safrmo/board-xcom
Simple XCOM-like in boardgame.io
https://github.com/safrmo/board-xcom
Last synced: 6 days ago
JSON representation
Simple XCOM-like in boardgame.io
- Host: GitHub
- URL: https://github.com/safrmo/board-xcom
- Owner: SaFrMo
- Created: 2019-12-03T14:14:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T02:15:12.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T05:11:10.179Z (about 1 month ago)
- Language: Vue
- Size: 673 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Boilerplate for a new Nuxt project, including:
- Automatic global registration for everything in the `~/components` directory
- `~/components/MyComponent.vue` becomes ``
- `~/components/grouped/Component.vue` becomes ``
- A simplified `pages/index.vue`
- All `.scss` vars/mixins/functions in `~/assets/scss` included globally using [style-resources](https://github.com/nuxt-community/style-resources-module) module## Recommended Workflow
1. Install `degit` if you don't have it: `npm i -g degit`
1. Use this bash script:
```
nuxt() {
npx create-nuxt-app "$1"
cd "$1"
find . -name "README.md" -delete
rm ./components/Logo.vue
degit safrmo/nuxt-boilerplate -f
npm i node-sass sass-loader @nuxt/style-resources -D
npm i lodash
cd ..
}
```
1. Run `nuxt my-new-project-name` to run `create-nuxt-app`, remove extra Nuxt boilerplates, install this boilerplate, and add SASS and Lodash