Skip to content

Commit

Permalink
fix(deps): resolve security issue
Browse files Browse the repository at this point in the history
* refactor: upgrade scripts
* refactor: add tests
  • Loading branch information
bigopon authored Apr 19, 2022
1 parent 6b8437a commit 45dcea1
Show file tree
Hide file tree
Showing 21 changed files with 10,216 additions and 8,816 deletions.
45 changes: 0 additions & 45 deletions .circleci/config.yml

This file was deleted.

36 changes: 32 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,35 @@
{
"extends": "./node_modules/aurelia-tools/.eslintrc.json",
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"node_modules",
"dist",
"build",
".vscode",
"*.config.js",
".webpack",
"_warmup",
"**/*.js"
],
"plugins": [],
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"camelcase": 0
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"prefer-const": "off",
"@typescript-eslint/ban-types": "off"
}
}
}
File renamed without changes.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: main
on: [push]

jobs:

ci:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci
- run: npm run cut-release
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ bower_components
.DS_STORE
build/reports
dist
.npmrc
124 changes: 0 additions & 124 deletions config.js

This file was deleted.

Loading

0 comments on commit 45dcea1

Please sign in to comment.