@jayfong/x-server 1.28.1 → 1.28.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/CHANGELOG.md +7 -0
- package/lib/_cjs/cli/build_util.js +1 -0
- package/lib/cli/build_util.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.28.2](https://github.com/jfWorks/x-server/compare/v1.28.1...v1.28.2) (2022-05-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* rhel-openssl-1.1.x ([c2a752a](https://github.com/jfWorks/x-server/commit/c2a752a2c06e8a1e37c3c72154d5f21d801de8a2))
|
|
11
|
+
|
|
5
12
|
### [1.28.1](https://github.com/jfWorks/x-server/compare/v1.28.0...v1.28.1) (2022-05-16)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -136,6 +136,7 @@ class BuildUtil {
|
|
|
136
136
|
|
|
137
137
|
await _fsExtra.default.copyFile(prismaSchemaFile, distPrismaSchemaFile);
|
|
138
138
|
await _fsExtra.default.copyFile(require.resolve('@prisma/engines/libquery_engine-rhel-openssl-1.0.x.so.node'), _nodePath.default.join(distDir, 'libquery_engine-rhel-openssl-1.0.x.so.node'));
|
|
139
|
+
await _fsExtra.default.copyFile(require.resolve('@prisma/engines/libquery_engine-rhel-openssl-1.1.x.so.node'), _nodePath.default.join(distDir, 'libquery_engine-rhel-openssl-1.1.x.so.node'));
|
|
139
140
|
} // 写入 pkg
|
|
140
141
|
|
|
141
142
|
|
package/lib/cli/build_util.js
CHANGED
|
@@ -110,6 +110,7 @@ export class BuildUtil {
|
|
|
110
110
|
const distPrismaSchemaFile = path.join(distDir, 'schema.prisma');
|
|
111
111
|
await fs.copyFile(prismaSchemaFile, distPrismaSchemaFile);
|
|
112
112
|
await fs.copyFile(require.resolve('@prisma/engines/libquery_engine-rhel-openssl-1.0.x.so.node'), path.join(distDir, 'libquery_engine-rhel-openssl-1.0.x.so.node'));
|
|
113
|
+
await fs.copyFile(require.resolve('@prisma/engines/libquery_engine-rhel-openssl-1.1.x.so.node'), path.join(distDir, 'libquery_engine-rhel-openssl-1.1.x.so.node'));
|
|
113
114
|
} // 写入 pkg
|
|
114
115
|
|
|
115
116
|
|