Skip to content

Commit

Permalink
🔧 Bumping node versions on workflows, node-sass
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsonjr committed Feb 3, 2022
1 parent dea93f3 commit 803470d
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 215 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-to-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
cache: yarn

- name: Install packages with Yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
cache: yarn

- name: Install packages with Yarn
Expand Down
77 changes: 17 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,12 @@
"package:all": "yarn build && concurrently \"yarn package:windows\" \"yarn package:mac\" \"yarn package:linux\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"cross-env NODE_ENV=development eslint --cache"
],
"*.{js,jsx,ts,tsx}": ["cross-env NODE_ENV=development eslint --cache"],
"{*.json,.{babelrc,eslintrc,prettierrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{css,scss}": [
"prettier --ignore-path .eslintignore --single-quote --write"
],
"*.{html,md,yml}": [
"prettier --ignore-path .eslintignore --single-quote --write"
]
"*.{css,scss}": ["prettier --ignore-path .eslintignore --single-quote --write"],
"*.{html,md,yml}": ["prettier --ignore-path .eslintignore --single-quote --write"]
},
"build": {
"asar": false,
Expand All @@ -65,9 +59,7 @@
"nspv-bitgo.js",
"node_modules"
],
"extraResources": [
"assets"
],
"extraResources": ["assets"],
"publish": {
"provider": "github",
"owner": "TokelPlatform",
Expand All @@ -77,9 +69,7 @@
},
"mac": {
"identity": null,
"target": [
"dmg"
],
"target": ["dmg"],
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "assets/entitlements.mac.plist",
Expand All @@ -104,18 +94,14 @@
},
"win": {
"icon": "icon.ico",
"target": [
"nsis"
]
"target": ["nsis"]
},
"nsis": {
"differentialPackage": false
},
"linux": {
"icon": "icon.png",
"target": [
"AppImage"
],
"target": ["AppImage"],
"category": "Development"
}
},
Expand All @@ -133,15 +119,7 @@
"bugs": {
"url": "https://github.com/TokelPlatform/tokel_app/issues"
},
"keywords": [
"tokel",
"komodo",
"nftmarketplace",
"dex",
"token",
"wallet",
"crypto"
],
"keywords": ["tokel", "komodo", "nftmarketplace", "dex", "token", "wallet", "crypto"],
"homepage": "https://github.com/TokelPlatform/tokel_app#readme",
"jest": {
"testURL": "http://localhost/",
Expand All @@ -158,29 +136,12 @@
"^util/(.*)$": "<rootDir>/src/util/$1",
"^vars/(.*)$": "<rootDir>/src/vars/$1"
},
"testPathIgnorePatterns": [
"<rootDir>/release/"
],
"modulePathIgnorePatterns": [
"<rootDir>/release/"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"moduleDirectories": [
"node_modules",
"src/electron/node_modules"
],
"setupFiles": [
"./config/scripts/CheckBuildsExist.js"
],
"transformIgnorePatterns": [
"node_modules/?!(minidenticon)"
]
"testPathIgnorePatterns": ["<rootDir>/release/"],
"modulePathIgnorePatterns": ["<rootDir>/release/"],
"moduleFileExtensions": ["js", "jsx", "ts", "tsx", "json"],
"moduleDirectories": ["node_modules", "src/electron/node_modules"],
"setupFiles": ["./config/scripts/CheckBuildsExist.js"],
"transformIgnorePatterns": ["node_modules/?!(minidenticon)"]
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down Expand Up @@ -269,7 +230,7 @@
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^5.0.0",
"node-sass": "^6.0.0",
"opencollective-postinstall": "^2.0.3",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
Expand Down Expand Up @@ -333,12 +294,8 @@
},
"browserslist": [],
"renovate": {
"extends": [
"bliss"
],
"baseBranches": [
"next"
]
"extends": ["bliss"],
"baseBranches": ["next"]
},
"husky": {
"hooks": {
Expand Down
Loading

0 comments on commit 803470d

Please sign in to comment.