mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Introduce dummy package for application
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
parent
c09c7125e5
commit
86378ae00e
17
package-lock.json
generated
17
package-lock.json
generated
@ -3281,6 +3281,10 @@
|
|||||||
"@jridgewell/sourcemap-codec": "1.4.14"
|
"@jridgewell/sourcemap-codec": "1.4.14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@k8slens/application": {
|
||||||
|
"resolved": "packages/technical-features/application",
|
||||||
|
"link": true
|
||||||
|
},
|
||||||
"node_modules/@k8slens/bump-version-for-cron": {
|
"node_modules/@k8slens/bump-version-for-cron": {
|
||||||
"resolved": "packages/bump-version-for-cron",
|
"resolved": "packages/bump-version-for-cron",
|
||||||
"link": true
|
"link": true
|
||||||
@ -32254,7 +32258,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astronautlabs/jsonpath": "^1.1.0",
|
"@astronautlabs/jsonpath": "^1.1.0",
|
||||||
"@hapi/call": "^9.0.1",
|
"@hapi/call": "^9.0.1",
|
||||||
"@hapi/subtext": "^7.0.4",
|
"@hapi/subtext": "^7.1.0",
|
||||||
"@k8slens/node-fetch": "^6.4.0-beta.13",
|
"@k8slens/node-fetch": "^6.4.0-beta.13",
|
||||||
"@kubernetes/client-node": "^0.18.1",
|
"@kubernetes/client-node": "^0.18.1",
|
||||||
"@material-ui/styles": "^4.11.5",
|
"@material-ui/styles": "^4.11.5",
|
||||||
@ -34095,6 +34099,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packages/infrastructure/webpack": {
|
"packages/infrastructure/webpack": {
|
||||||
|
"name": "@k8slens/webpack",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -34534,6 +34539,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz",
|
||||||
"integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==",
|
"integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
|
},
|
||||||
|
"packages/technical-features/application": {
|
||||||
|
"name": "@k8slens/application",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"license": "MIT",
|
||||||
|
"peerDependencies": {
|
||||||
|
"@ogre-tools/fp": "^12.0.1",
|
||||||
|
"@ogre-tools/injectable": "^12.0.1",
|
||||||
|
"lodash": "^4.17.15"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
packages/technical-features/application/README.md
Normal file
18
packages/technical-features/application/README.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# @k8slens/application
|
||||||
|
|
||||||
|
This package contains stuff related to creating Lens-applications.
|
||||||
|
|
||||||
|
In the beginning it will contain just the injection tokens used to configure the application.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
```bash
|
||||||
|
$ npm install @k8slens/application
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
As of now, this package doesn't do anything alone. It just provides you way to register implementation for contract.
|
||||||
|
|
||||||
|
Future ambition is that all stuff related to how applications are built will be relocated here.
|
||||||
|
|
||||||
1
packages/technical-features/application/index.ts
Normal file
1
packages/technical-features/application/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export default {}
|
||||||
2
packages/technical-features/application/jest.config.js
Normal file
2
packages/technical-features/application/jest.config.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
module.exports =
|
||||||
|
require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||||
34
packages/technical-features/application/package.json
Normal file
34
packages/technical-features/application/package.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"name": "@k8slens/application",
|
||||||
|
"private": false,
|
||||||
|
"version": "6.4.0-beta.13",
|
||||||
|
"description": "Package for creating Lens applications",
|
||||||
|
"type": "commonjs",
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/lensapp/monorepo.git"
|
||||||
|
},
|
||||||
|
"main": "dist/index.js",
|
||||||
|
"types": "dist/index.d.ts",
|
||||||
|
"author": {
|
||||||
|
"name": "OpenLens Authors",
|
||||||
|
"email": "info@k8slens.dev"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"homepage": "https://github.com/lensapp/lens",
|
||||||
|
"scripts": {
|
||||||
|
"build": "lens-build",
|
||||||
|
"build:remove": "lens-remove-build",
|
||||||
|
"code-style:fix": "lens-fix-code-style",
|
||||||
|
"code-style:verify": "lens-verify-code-style",
|
||||||
|
"test": "lens-test"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@ogre-tools/fp": "^12.0.1",
|
||||||
|
"@ogre-tools/injectable": "^12.0.1",
|
||||||
|
"lodash": "^4.17.15"
|
||||||
|
}
|
||||||
|
}
|
||||||
3
packages/technical-features/application/tsconfig.json
Normal file
3
packages/technical-features/application/tsconfig.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"extends": "@k8slens/typescript/config/base.json"
|
||||||
|
}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
module.exports = require("@k8slens/webpack").configForNode;
|
||||||
Loading…
Reference in New Issue
Block a user