Skip to content

Commit

Permalink
fix: build was broken, now fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Feb 2, 2020
1 parent c8397d4 commit 71911f7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 17 deletions.
1 change: 0 additions & 1 deletion .eslintignore
@@ -1,3 +1,2 @@
legacy/
**/dist/*.js
**/docs/
12 changes: 1 addition & 11 deletions .eslintrc
@@ -1,13 +1,3 @@
{
"extends": ["@favware"],
"rules": {
"array-bracket-spacing": "off",
"eol-last": "off",
"comma-dangle": "off",
"no-useless-escape": "off",
"quotes": "off",
"no-invalid-this": "off",
"object-curly-newline": "off",
"new-cap": "off"
}
"extends": ["@favware"]
}
5 changes: 2 additions & 3 deletions assets/package.lambda.json
Expand Up @@ -6,11 +6,10 @@
"@klasa/utils": "^0.0.4",
"alexa-app": "^4",
"apollo-boost": "^0.4.7",
"confusables": "^0.3.3",
"confusables": "^1.0.0",
"cross-fetch": "^3",
"graphql-tag": "^2",
"graphql": "^14",
"tslib": "*"
"graphql": "^14"
},
"engines": {
"node": "12"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -4,7 +4,8 @@
"description": "Amazing pokedex skill for Alexa",
"author": "@favware",
"license": "MIT",
"main": "functions/dexa/index.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://favware.tech/dexa",
"private": true,
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -5,6 +5,7 @@
"declarationMap": false,
"sourceMap": false,
"removeComments": true,
"typeRoots": ["typings", "node_modules/@types"]
"typeRoots": ["typings", "node_modules/@types"],
"importHelpers": false
}
}

0 comments on commit 71911f7

Please sign in to comment.