1
mirror of https://github.com/jakejarvis/jakejarvis.git synced 2025-12-01 07:43:50 -05:00

CLI: "simplify" build step w/ build.js

also use react's JSX transform/automatic runtime: https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
This commit is contained in:
2021-09-06 12:55:26 -04:00
parent ec9442cc9e
commit da39c366bc
5 changed files with 144 additions and 1803 deletions

View File

@@ -31,44 +31,34 @@
"jakejarvis": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"babel": "babel index.js -o dist/unbundled.js",
"ncc": "ncc build dist/unbundled.js -m -o dist",
"build": "run-s clean babel ncc",
"build": "node build.js",
"run": "yarn build && node dist/index.js",
"lint": "eslint .",
"prepublishOnly": "run-s lint build"
"prepublishOnly": "yarn build",
"lint": "eslint ."
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-react": "^7.14.5",
"@jakejarvis/eslint-config": "*",
"@vercel/ncc": "^0.30.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^10.0.0",
"ink": "^3.0.9",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.0",
"npm-run-all": "^4.1.5",
"open": "^8.2.1",
"react": "^16.x",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
"pretty-bytes": "^5.6.0",
"react": "^17.0.2"
},
"eslintConfig": {
"extends": [
"@jakejarvis/eslint-config",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended"
],
"parserOptions": {
@@ -85,6 +75,7 @@
}
},
"ignorePatterns": [
"tmp/**",
"dist/**"
]
}