Skip to content

Commit

Permalink
feat: support Vue3 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
farnabaz authored Apr 15, 2022
1 parent a9a9a0c commit f52cf6d
Show file tree
Hide file tree
Showing 45 changed files with 2,814 additions and 11,886 deletions.
1 change: 0 additions & 1 deletion .editorconfig
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# editorconfig.org
root = true

[*]
Expand Down
11 changes: 1 addition & 10 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
node_modules
dist
.nuxt
coverage
*.log*
.DS_Store
.code
*.iml
package-lock.json
templates/*
sw.js
node_modules
10 changes: 10 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": [
"@nuxtjs/eslint-config-typescript"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"off"
]
}
}
41 changes: 0 additions & 41 deletions .eslintrc.js

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci

on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: yarn
- run: yarn install
- run: yarn dev:prepare
- run: yarn lint
- run: yarn prepack
- run: yarn test
54 changes: 46 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,51 @@
# Dependencies
node_modules
*.iml
.idea

# Logs
*.log*
.nuxt
.vscode
.DS_Store
coverage

# Temp directories
.temp
.tmp
.cache

# Yarn
**/.yarn/cache
**/.yarn/*state*

# Generated dirs
dist
sw.js

# Nuxt
.nuxt
.output
.vercel_build_output
.build-*
.env
.netlify

# Env
.env
example*/yarn.lock

# Testing
reports
coverage
*.lcov
.nyc_output

# VSCode
.vscode

# Intellij idea
*.iml
.idea

# OSX
.DS_Store
.AppleDouble
.LSOverride
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

8 changes: 0 additions & 8 deletions build.config.ts

This file was deleted.

16 changes: 0 additions & 16 deletions example-v3/components/MyComponent.vue

This file was deleted.

20 changes: 0 additions & 20 deletions example-v3/components/MyMeta.vue

This file was deleted.

6 changes: 0 additions & 6 deletions example-v3/nuxt.config.ts

This file was deleted.

12 changes: 0 additions & 12 deletions example-v3/package.json

This file was deleted.

9 changes: 0 additions & 9 deletions example-v3/pages/index.vue

This file was deleted.

Empty file removed example-v3/static/.gitkeep
Empty file.
Binary file removed example-v3/static/icon.png
Binary file not shown.
16 changes: 0 additions & 16 deletions example/components/MyComponent.vue

This file was deleted.

20 changes: 0 additions & 20 deletions example/components/MyMeta.vue

This file was deleted.

4 changes: 0 additions & 4 deletions example/content/index.md

This file was deleted.

9 changes: 0 additions & 9 deletions example/docus.config.ts

This file was deleted.

7 changes: 0 additions & 7 deletions example/nuxt.config.ts

This file was deleted.

Empty file removed example/static/.gitkeep
Empty file.
Binary file removed example/static/icon.png
Binary file not shown.
12 changes: 0 additions & 12 deletions jest.config.js

This file was deleted.

11 changes: 0 additions & 11 deletions netlify.toml

This file was deleted.

Loading

0 comments on commit f52cf6d

Please sign in to comment.