Skip to content

Commit

Permalink
Changed project tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioruebe committed May 14, 2023
1 parent d008666 commit bf0fcf9
Show file tree
Hide file tree
Showing 47 changed files with 2,265 additions and 1,242 deletions.
11 changes: 0 additions & 11 deletions .editorconfig

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

7 changes: 0 additions & 7 deletions .eslintrc

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
31 changes: 0 additions & 31 deletions .github/workflows/nodejs.yml

This file was deleted.

28 changes: 26 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
node_modules/*
/devdata
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

/devdata
5 changes: 0 additions & 5 deletions .npmignore

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ The background color is set automatically based on the brightness of the backgro

###### Default values

```json
```js
{
cssClassLabel: "mdi-label",
cssClassTextLight: "mdi-label-text-light",
cssClassTextDark: "mdi-label-text-dark"
cssClassLabel: "mdi-label",
cssClassTextLight: "mdi-label-text-light",
cssClassTextDark: "mdi-label-text-dark"
}
```

Expand Down
Loading

0 comments on commit bf0fcf9

Please sign in to comment.