alp-migrations 8.0.0 → 8.2.0

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/CHANGELOG.md CHANGED
@@ -1,8 +1,28 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [8.2.0](https://github.com/christophehurpeau/alp/compare/alp-migrations@8.1.0...alp-migrations@8.2.0) (2024-01-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **deps:** update dependency liwi-mongo to v11 ([#465](https://github.com/christophehurpeau/alp/issues/465)) ([f8c4804](https://github.com/christophehurpeau/alp/commit/f8c4804621cf179e4155a18121f5a8d4f144b11e))
12
+
13
+
14
+
15
+
16
+ ## [8.1.0](https://github.com/christophehurpeau/alp/compare/alp-migrations@8.0.0...alp-migrations@8.1.0) (2023-12-25)
17
+
18
+
19
+ ### Features
20
+
21
+ * update dependencies ([ddc8f92](https://github.com/christophehurpeau/alp/commit/ddc8f92cccacf6ed2baabf8555f0b37fe281ce9d))
22
+
23
+ Version bump for dependency: alp-types
24
+
25
+
6
26
  ## [8.0.0](https://github.com/christophehurpeau/alp/compare/alp-migrations@7.3.0...alp-migrations@8.0.0) (2023-07-29)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-migrations",
3
- "version": "8.0.0",
3
+ "version": "8.2.0",
4
4
  "description": "migrations scripts in alp",
5
5
  "keywords": [],
6
6
  "author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
@@ -15,6 +15,7 @@
15
15
  "engines": {
16
16
  "node": ">=18.12.0"
17
17
  },
18
+ "sideEffects": false,
18
19
  "main": "./dist/index-node18.mjs",
19
20
  "types": "./dist/definitions/index.d.ts",
20
21
  "exports": {
@@ -26,7 +27,10 @@
26
27
  }
27
28
  }
28
29
  },
29
- "sideEffects": false,
30
+ "files": [
31
+ "src",
32
+ "dist"
33
+ ],
30
34
  "scripts": {
31
35
  "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
32
36
  "build:definitions": "tsc -p tsconfig.json",
@@ -36,7 +40,6 @@
36
40
  "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-migrations",
37
41
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
38
42
  },
39
- "prettier": "@pob/root/prettier-config",
40
43
  "pob": {
41
44
  "babelEnvs": [
42
45
  {
@@ -48,21 +51,21 @@
48
51
  "index"
49
52
  ]
50
53
  },
54
+ "prettier": "@pob/root/prettier-config",
51
55
  "peerDependencies": {
52
- "liwi-mongo": "^10.5.0"
56
+ "liwi-mongo": "^10.5.0 || ^11.0.0"
53
57
  },
54
58
  "dependencies": {
55
- "alp-types": "3.1.0",
56
- "nightingale-logger": "^14.1.0",
59
+ "alp-types": "3.1.1",
60
+ "nightingale-logger": "^15.0.0",
57
61
  "semver": "^7.3.5"
58
62
  },
59
63
  "devDependencies": {
60
- "@babel/core": "7.22.9",
61
- "@types/node": "18.17.1",
62
- "@types/semver": "7.5.0",
63
- "liwi-mongo": "10.5.0",
64
- "pob-babel": "36.2.0",
65
- "typescript": "5.1.6"
66
- },
67
- "gitHead": "c01392e16b2d914a332fe835333dd6a82c677ab8"
68
- }
64
+ "@babel/core": "7.23.7",
65
+ "@types/node": "20.10.6",
66
+ "@types/semver": "7.5.6",
67
+ "liwi-mongo": "11.0.0",
68
+ "pob-babel": "38.0.2",
69
+ "typescript": "5.3.3"
70
+ }
71
+ }
@@ -2,6 +2,7 @@
2
2
  "root": true,
3
3
  "parser": "@typescript-eslint/parser",
4
4
  "parserOptions": {
5
+ "EXPERIMENTAL_useProjectService": true,
5
6
  "project": "packages/alp-migrations/tsconfig.json"
6
7
  },
7
8
  "plugins": ["@typescript-eslint"],
package/.editorconfig DELETED
@@ -1,13 +0,0 @@
1
- # EditorConfig helps developers define and maintain consistent
2
- # coding styles between different editors and IDEs
3
- # http://editorconfig.org
4
-
5
- root = true
6
-
7
- [*]
8
- indent_style = space
9
- indent_size = 2
10
- end_of_line = lf
11
- charset = utf-8
12
- trim_trailing_whitespace = true
13
- insert_final_newline = true
package/.eslintrc.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": ["@pob/eslint-config/root-module"],
4
- "ignorePatterns": ["*.d.ts", "/dist"]
5
- }
package/AUTHORS DELETED
@@ -1 +0,0 @@
1
- Christophe Hurpeau <christophe@hurpeau.com>