mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Remove Makefile from all intree extensions - Makefiles are not really common (rightly so) in JS projects and script entries in the package.json are good enough and what they're there for. - Move to using yarn for installing dependencies and running scripts as that is what we mostly use for the rest of the project. - Move from using make syntax to a dedicated script for building and testing extensions. - add jest as extension devDep, go back to using makefile foreach syntax - add correct exit code - add yarn check call to install-deps - add yarn invokation to find deps Signed-off-by: Sebastian Malton <sebastian@malton.name>
24 lines
579 B
JSON
24 lines
579 B
JSON
{
|
|
"name": "lens-license",
|
|
"version": "0.1.0",
|
|
"description": "License menu item",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "webpack -p",
|
|
"dev": "webpack --watch",
|
|
"test": "jest --passWithNoTests --env=jsdom src $@"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@k8slens/extensions": "file:../../src/extensions/npm/extensions",
|
|
"@types/webpack": "^4.41.17",
|
|
"jest": "^26.6.3",
|
|
"mobx": "^5.15.5",
|
|
"react": "^16.13.1",
|
|
"ts-loader": "^8.0.4",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.0.3",
|
|
"webpack": "^4.44.2"
|
|
}
|
|
}
|