@syncbridge/syncbuild 0.5.5 → 0.5.7
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/builder/create-context.js +1 -1
- package/constants.js +1 -1
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@ import * as jsonc from 'jsonc-parser';
|
|
|
6
6
|
import { version } from '../constants.js';
|
|
7
7
|
import { scanNativeDeps } from './utils/scan-native-deps.js';
|
|
8
8
|
export function createContext(config) {
|
|
9
|
-
const packageDir = path.resolve(process.cwd(), config.packageDir);
|
|
9
|
+
const packageDir = path.resolve(process.cwd(), config.packageDir || './');
|
|
10
10
|
let pkgJson;
|
|
11
11
|
try {
|
|
12
12
|
pkgJson = jsonc.parse(fs.readFileSync(path.resolve(packageDir, 'package.json'), 'utf-8'));
|
package/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncbridge/syncbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "SyncBridge Extension Package Builder",
|
|
5
5
|
"author": "Panates Inc",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"typescript": "^5.9.3"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@syncbridge/common": "^0.5.
|
|
23
|
+
"@syncbridge/common": "^0.5.7"
|
|
24
24
|
},
|
|
25
25
|
"type": "module",
|
|
26
26
|
"module": "./index.js",
|