Skip to content

Commit

Permalink
Merge pull request CommandersAct#48 from unit214/vue2-wrapper-update
Browse files Browse the repository at this point in the history
Vue wrapper update
  • Loading branch information
bpemca authored Jan 15, 2024
2 parents a7e17d3 + c68ae55 commit 07d74a6
Show file tree
Hide file tree
Showing 98 changed files with 29,589 additions and 26,037 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Unit testing

on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize

jobs:
test:
name: npm test
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Dependencies
run: npm install

- name: Run Tests
run: npm test
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/cjs

# dependencies
/tag-commander-sample-app/node_modules
/node_modules

# IDEs and editors
Expand Down Expand Up @@ -39,5 +38,4 @@ testem.log

# System Files
.DS_Store
Thumbs.db
tag-commander-sample-app/yarn.lock
Thumbs.db
44 changes: 3 additions & 41 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,3 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output

/tmp
/out-tsc

# dependencies
/tag-commander-sample-app
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
tag-commander-sample-app/yarn.lock
node_modules
tag-commander-sample-app-vue2
tag-commander-sample-app-vue3
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
}
Loading

0 comments on commit 07d74a6

Please sign in to comment.