mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-20 10:31:00 +01:00
eslint now receives the glob itself
This commit is contained in:
parent
4b61b4a370
commit
c0a0ea66a6
@ -2,5 +2,6 @@
|
|||||||
. "$(dirname -- "$0")/_/husky.sh"
|
. "$(dirname -- "$0")/_/husky.sh"
|
||||||
|
|
||||||
npm run lint-staged
|
npm run lint-staged
|
||||||
|
npm run lint
|
||||||
npm run test-ci
|
npm run test-ci
|
||||||
npm run e2e-ci
|
npm run e2e-ci
|
||||||
|
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.6.1] - 2022-08-08
|
||||||
|
|
||||||
|
- eslint now receives the glob itself
|
||||||
|
|
||||||
## [0.6.0] - 2022-08-08
|
## [0.6.0] - 2022-08-08
|
||||||
|
|
||||||
- Added styled components
|
- Added styled components
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "react-starter-kit",
|
"name": "react-starter-kit",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "react-starter-kit",
|
"name": "react-starter-kit",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-starter-kit",
|
"name": "react-starter-kit",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"description": "A modern, create-react-app-based, starter kit for React projects",
|
"description": "A modern, create-react-app-based, starter kit for React projects",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"e2e": "cypress open -d --e2e",
|
"e2e": "cypress open -d --e2e",
|
||||||
"e2e-ci": "start-server-and-test start http://localhost:3000 cypress-run",
|
"e2e-ci": "start-server-and-test start http://localhost:3000 cypress-run",
|
||||||
"postinstall": "husky install",
|
"postinstall": "husky install",
|
||||||
"lint": "GLOBIGNORE='src/types' && eslint src/**",
|
"lint": "eslint \"src/**\"",
|
||||||
"lint-staged": "lint-staged --relative",
|
"lint-staged": "lint-staged --relative",
|
||||||
"organize-package-json": "npx format-package -w && npx sort-package-json",
|
"organize-package-json": "npx format-package -w && npx sort-package-json",
|
||||||
"pretty-quick": "pretty-quick --staged",
|
"pretty-quick": "pretty-quick --staged",
|
||||||
|
Loading…
Reference in New Issue
Block a user