@golemio/municipal-libraries 1.1.3-dev.708281309 → 1.1.3-dev.747417584
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 +2 -2
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -35,10 +35,10 @@ The APIs may be unstable. Therefore, we recommend to install this module as an e
|
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
# Latest version
|
|
38
|
-
|
|
38
|
+
npm install --save-exact @golemio/municipal-libraries@latest
|
|
39
39
|
|
|
40
40
|
# Development version
|
|
41
|
-
|
|
41
|
+
npm install --save-exact @golemio/municipal-libraries@dev
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
<!-- ## Description -->
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/municipal-libraries",
|
|
3
|
-
"version": "1.1.3-dev.
|
|
3
|
+
"version": "1.1.3-dev.747417584",
|
|
4
4
|
"description": "Golemio Municipal Libraries Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
|
|
9
|
-
"build-minimal": "run-s 'build --sourceMap false --declaration false'",
|
|
10
|
-
"build-watch": "run-s 'build --watch --preserveWatchOutput'",
|
|
9
|
+
"build-minimal": "run-s 'build -- --sourceMap false --declaration false'",
|
|
10
|
+
"build-watch": "run-s 'build -- --watch --preserveWatchOutput'",
|
|
11
11
|
"pretest": "golemio import-db-data --postgres",
|
|
12
12
|
"test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'",
|
|
13
|
-
"test-debug": "run-s 'test --inspect-brk=9230'",
|
|
14
|
-
"code-coverage": "nyc run-s 'test -r source-map-support/register'",
|
|
13
|
+
"test-debug": "run-s 'test -- --inspect-brk=9230'",
|
|
14
|
+
"code-coverage": "nyc run-s 'test -- -r source-map-support/register'",
|
|
15
15
|
"migrate-db": "golemio migrate-db up --postgres",
|
|
16
16
|
"generate-docs": "typedoc --out docs/typedoc src",
|
|
17
17
|
"lint": "eslint \"{src,test}/**/*.ts\""
|
|
@@ -25,6 +25,11 @@
|
|
|
25
25
|
"type": "git",
|
|
26
26
|
"url": "https://gitlab.com/operator-ict/golemio/code/modules/municipal-libraries"
|
|
27
27
|
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=16.0.0",
|
|
30
|
+
"npm": ">=8.0.0",
|
|
31
|
+
"yarn": "Use npm!"
|
|
32
|
+
},
|
|
28
33
|
"devDependencies": {
|
|
29
34
|
"@commitlint/cli": "^11.0.0",
|
|
30
35
|
"@commitlint/config-conventional": "^11.0.0",
|