Skip to content

Commit

Permalink
chore(scripts): replace npm i with yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
yadPe committed Apr 8, 2021
1 parent 954af87 commit c257405
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@
"prebuild": "node scripts/preBuild.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js",
"lint": "npm run lint:prettier && npm run lint:es",
"lint:fix": "npm run lint:fix:prettier && npm run lint:fix:es",
"lint": "yarn lint:prettier && yarn lint:es",
"lint:fix": "yarn lint:fix:prettier && yarn lint:fix:es",
"lint:prettier": "prettier --check '**/*.{json,jsx,tsx,mjs,js,ts}'",
"lint:fix:prettier": "prettier --write '**/*.{json,jsx,tsx,mjs,js,ts}'",
"lint:es": "eslint '**/*.{js,jsx,mjs,ts,tsx}'",
"lint:fix:es": "eslint --fix '**/*.{js,jsx,mjs,ts,tsx}'",
"bsb": "bsb -make-world",
"bsb:watch": "bsb -make-world -w",
"bsb:clean": "bsb -clean-world",
"dist": "npm i && npm run build && electron-builder build --win --linux --mac --ia32 --x64",
"dist:win": "npm i && npm run build && electron-builder build --win --x64",
"dist:linux": "npm i && npm run build && electron-builder build --linux --x64",
"dist:mac": "npm i && npm run build && electron-builder build --mac --x64",
"dist:gh-publish": "npm i && npm run build && electron-builder build --win --linux --mac --ia32 --x64 -p always",
"dist": "yarn install && yarn build && electron-builder build --win --linux --mac --ia32 --x64",
"dist:win": "yarn install && yarn build && electron-builder build --win --x64",
"dist:linux": "yarn install && yarn build && electron-builder build --linux --x64",
"dist:mac": "yarn install && yarn build && electron-builder build --mac --x64",
"dist:gh-publish": "yarn install && yarn build && electron-builder build --win --linux --mac --ia32 --x64 -p always",
"electron-dev": "cross-env ELECTRON_START_URL=http://localhost:3200 electron .",
"electron:debug-analytics": "cross-env ELECTRON_START_URL=http://localhost:3200 DEBUG=universal-analytics electron .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
Expand Down Expand Up @@ -230,4 +230,4 @@
"react-app"
]
}
}
}

0 comments on commit c257405

Please sign in to comment.