@gisatcz/ptr-be-core 0.0.1-dev.1 → 0.0.1-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +18 -26
- package/dist/index.cjs +153 -26285
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.mjs +151 -26286
- package/dist/index.mjs.map +1 -1
- package/dist/src/api/errors.api.d.ts +18 -0
- package/dist/src/api/models.api.d.ts +9 -0
- package/dist/src/coding/code.formating.d.ts +0 -1
- package/dist/src/coding/code.types.d.ts +1 -2
- package/dist/src/logging/logger.d.ts +0 -1
- package/dist/src/panther/enums.panther.d.ts +3 -3
- package/dist/src/panther/models.edges.d.ts +0 -1
- package/dist/src/panther/models.nodes.d.ts +18 -7
- package/dist/src/panther/models.nodes.properties.d.ts +41 -3
- package/package.json +17 -7
- package/.github/workflows/release-dev.yml +0 -34
- package/.github/workflows/release.yml +0 -28
- package/.github/workflows/version-bump.yml +0 -68
- package/barrelsby.json +0 -9
- package/dist/index.d.ts.map +0 -1
- package/dist/src/coding/code.formating.d.ts.map +0 -1
- package/dist/src/coding/code.types.d.ts.map +0 -1
- package/dist/src/logging/logger.d.ts.map +0 -1
- package/dist/src/panther/enums.panther.d.ts.map +0 -1
- package/dist/src/panther/models.edges.d.ts.map +0 -1
- package/dist/src/panther/models.nodes.d.ts.map +0 -1
- package/dist/src/panther/models.nodes.properties.d.ts.map +0 -1
- package/doc/npm-refresh.md +0 -4
- package/rollup.config.js +0 -30
- package/src/coding/code.formating.ts +0 -104
- package/src/coding/code.types.ts +0 -11
- package/src/logging/logger.ts +0 -58
- package/src/panther/SharedFeature.md +0 -43
- package/src/panther/enums.panther.ts +0 -41
- package/src/panther/models.edges.ts +0 -20
- package/src/panther/models.nodes.properties.ts +0 -31
- package/src/panther/models.nodes.ts +0 -55
- package/tsconfig.json +0 -51
package/Readme.md
CHANGED
|
@@ -1,26 +1,18 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- Open terminal in the `/bepack`
|
|
20
|
-
- Run `npm run build`
|
|
21
|
-
|
|
22
|
-
Check `package.json` for build steps.
|
|
23
|
-
|
|
24
|
-
## Technologies
|
|
25
|
-
- Typescript (https://www.typescriptlang.org/docs/)
|
|
26
|
-
- Barrelsby for indexing (https://github.com/bencoveney/barrelsby)
|
|
1
|
+
# Shared Library for Panther Backend
|
|
2
|
+
This repository contains source of shared functionalities across Panther backend services.
|
|
3
|
+
|
|
4
|
+
## Installation (DEV)
|
|
5
|
+
- Install Node and NPM
|
|
6
|
+
- Install YALC by `npm install -g yalc`
|
|
7
|
+
- Clone the package repository.
|
|
8
|
+
- Open terminal in package root.
|
|
9
|
+
- Run `npm i` and `npm run build` to install dependencies and make a build of the NPM package.
|
|
10
|
+
- Run `npm run yalc:publish` for local publishing the package into yalc repository.
|
|
11
|
+
- Now you can add this package for local development by opening the target application repository and run `yalc add @gisatcz/ptr-be-core`
|
|
12
|
+
- Run `npm run dev` for development mode with Rollup build watcher and auto yalc publishing.
|
|
13
|
+
|
|
14
|
+
## Resources
|
|
15
|
+
- YALC (local NPM): https://github.com/wclr/yalc
|
|
16
|
+
- Vitest (testing): https://vitest.dev
|
|
17
|
+
- Barrelsby (TS Imports into one `index.ts`): https://github.com/bencoveney/barrelsby
|
|
18
|
+
- Rollup (NPM package build): https://rollupjs.org
|