Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kremalicious committed Jun 4, 2019
1 parent 2c7c81b commit e86cade
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"presets": ["@babel/env", "@babel/react"],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
]
"plugins": ["@babel/plugin-proposal-class-properties"]
}
5 changes: 5 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,10 @@
"es6": true,
"node": true,
"jest": true
},
"settings": {
"react": {
"version": "detect"
}
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
"main": "./src/main/index.js",
"scripts": {
"test": "eslint ./src/**/*.{js,jsx} && stylelint ./src/**/*.css",
"test": "eslint --ignore-path .gitignore ./src/**/*.{js,jsx} && stylelint --ignore-path .gitignore ./src/**/*.{css,scss}",
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.common.config.js",
"package": "electron-builder build -mwl && open ./dist",
Expand All @@ -23,13 +23,12 @@
"dependencies": {
"@coingecko/cryptoformat": "^0.3.2",
"ethereum-address": "0.0.4",
"ethereum-blockies": "MyEtherWallet/blockies",
"ethereum-blockies": "github:MyEtherWallet/blockies",
"ms": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
Expand Down Expand Up @@ -76,7 +75,8 @@
"package.json"
],
"mac": {
"category": "public.app-category.finance"
"category": "public.app-category.finance",
"identity": null
},
"linux": {
"target": [
Expand Down

0 comments on commit e86cade

Please sign in to comment.