Skip to content

Commit

Permalink
fix: deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
vuki656 committed Dec 1, 2021
1 parent dbac0e6 commit 4ca5357
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -9,15 +9,17 @@
],
"scripts": {
"lint": "eslint './src/**/*' --quiet",
"build": "tsc",
"build": "tsc -p tsconfig.production.json",
"test": "jest --config=./jest.config.ts --runInBand"
},
"dependencies": {
"@typescript-eslint/types": "^5.4.0"
},
"devDependencies": {
"@rimac-automobili/eslint-config": "^20.0.1",
"@types/node": "^16.11.11",
"@typescript-eslint/experimental-utils": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@typescript-eslint/types": "^5.4.0",
"eslint": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.0.2",
"jest": "^27.4.1",
Expand Down
File renamed without changes.
@@ -1,6 +1,5 @@
import { ruleTester } from '../utils'

import rule from './import-declaration-newline'
import rule from '../../rules/import-declaration-newline'
import { ruleTester } from '../ruleTester'

ruleTester.run(rule.name, rule.value, {
invalid: [
Expand Down
1 change: 0 additions & 1 deletion src/utils/index.ts
@@ -1,2 +1 @@
export * from './createRule'
export * from './ruleTester'
5 changes: 5 additions & 0 deletions tsconfig.production.json
@@ -0,0 +1,5 @@
{
"extends": "./tsconfig.json",
"include": ["src"],
"exclude": ["src/tests", "src/fixtures"]
}

0 comments on commit 4ca5357

Please sign in to comment.