hologit 0.46.2 → 0.47.3
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/bin/cli.js +2 -2
- package/commands/project.js +8 -2
- package/jest.config.js +7 -0
- package/lib/Repo.js +2 -2
- package/lib/SpecObject.js +2 -2
- package/package.json +16 -19
package/bin/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ module.exports = { logger };
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
// route command line
|
|
24
|
-
require('yargs')
|
|
24
|
+
require('yargs')(process.argv.slice(2))
|
|
25
25
|
.version(require('../package.json').version)
|
|
26
26
|
.option('d', {
|
|
27
27
|
alias: 'debug',
|
|
@@ -58,4 +58,4 @@ require('yargs')
|
|
|
58
58
|
})
|
|
59
59
|
.strict()
|
|
60
60
|
.help()
|
|
61
|
-
.
|
|
61
|
+
.parse();
|
package/commands/project.js
CHANGED
|
@@ -10,6 +10,11 @@ exports.builder = {
|
|
|
10
10
|
describe: 'A commit message to use if commit-branch is specified',
|
|
11
11
|
type: 'string'
|
|
12
12
|
},
|
|
13
|
+
'commit-source-parent': {
|
|
14
|
+
describe: 'Include the source commit as a second parent in the projection commit',
|
|
15
|
+
type: 'boolean',
|
|
16
|
+
default: true
|
|
17
|
+
},
|
|
13
18
|
'ref': {
|
|
14
19
|
describe: 'Commit ref to read holobranch from',
|
|
15
20
|
default: 'HEAD'
|
|
@@ -53,6 +58,7 @@ exports.handler = async function project ({
|
|
|
53
58
|
watch = false,
|
|
54
59
|
commitTo = null,
|
|
55
60
|
commitMessage = null,
|
|
61
|
+
commitSourceParent = true,
|
|
56
62
|
cacheFrom = null,
|
|
57
63
|
cacheTo = null
|
|
58
64
|
}) {
|
|
@@ -136,7 +142,7 @@ exports.handler = async function project ({
|
|
|
136
142
|
lens,
|
|
137
143
|
commitTo,
|
|
138
144
|
commitMessage,
|
|
139
|
-
parentCommit,
|
|
145
|
+
parentCommit: commitSourceParent ? parentCommit : null,
|
|
140
146
|
fetch,
|
|
141
147
|
cacheFrom,
|
|
142
148
|
cacheTo
|
|
@@ -156,7 +162,7 @@ exports.handler = async function project ({
|
|
|
156
162
|
lens,
|
|
157
163
|
commitTo,
|
|
158
164
|
commitMessage,
|
|
159
|
-
parentCommit: newCommitHash,
|
|
165
|
+
parentCommit: commitSourceParent ? newCommitHash : null,
|
|
160
166
|
cacheFrom,
|
|
161
167
|
cacheTo
|
|
162
168
|
});
|
package/jest.config.js
ADDED
package/lib/Repo.js
CHANGED
|
@@ -196,7 +196,7 @@ class Repo {
|
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
async watch ({ callback }) {
|
|
199
|
-
const debounce =
|
|
199
|
+
const { default: debounce } = await import('debounce');
|
|
200
200
|
const logger = require('../lib/logger.js');
|
|
201
201
|
|
|
202
202
|
|
|
@@ -313,7 +313,7 @@ class Repo {
|
|
|
313
313
|
cancel
|
|
314
314
|
};
|
|
315
315
|
} else {
|
|
316
|
-
const chokidar =
|
|
316
|
+
const { default: chokidar } = await import('chokidar');
|
|
317
317
|
const watcher = chokidar.watch([], {
|
|
318
318
|
persistent: true,
|
|
319
319
|
cwd: this.gitDir,
|
package/lib/SpecObject.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
const sortKeys = require('sort-keys');
|
|
2
1
|
const TOML = require('@iarna/toml');
|
|
3
2
|
|
|
4
3
|
|
|
@@ -8,7 +7,8 @@ const BlobObject = require('./BlobObject.js');
|
|
|
8
7
|
class SpecObject extends BlobObject {
|
|
9
8
|
|
|
10
9
|
static async write (repo, kind, data) {
|
|
11
|
-
// build ordered spec object
|
|
10
|
+
// build ordered spec object (sort-keys is ESM-only, requires dynamic import)
|
|
11
|
+
const { default: sortKeys } = await import('sort-keys');
|
|
12
12
|
const holospec = {};
|
|
13
13
|
holospec[kind] = sortKeys(data, { deep: true });
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hologit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.3",
|
|
4
4
|
"description": "Hologit automates the projection of layered composite file trees based on flat, declarative plans",
|
|
5
|
-
"repository": "https://github.com/
|
|
5
|
+
"repository": "https://github.com/JarvusInnovations/hologit",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
8
|
"preferGlobal": true,
|
|
@@ -11,29 +11,29 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@iarna/toml": "^2.2.5",
|
|
13
13
|
"async-exit-hook": "^2.0.1",
|
|
14
|
-
"axios": "^1.
|
|
15
|
-
"chokidar": "^
|
|
16
|
-
"debounce": "^
|
|
17
|
-
"fb-watchman": "^2.0.
|
|
14
|
+
"axios": "^1.13.2",
|
|
15
|
+
"chokidar": "^5.0.0",
|
|
16
|
+
"debounce": "^3.0.0",
|
|
17
|
+
"fb-watchman": "^2.0.2",
|
|
18
18
|
"git-client": "^1.9.4",
|
|
19
19
|
"hab-client": "^1.1.3",
|
|
20
|
-
"handlebars": "^4.7.
|
|
21
|
-
"minimatch": "^10.
|
|
22
|
-
"mz": "^2.
|
|
20
|
+
"handlebars": "^4.7.8",
|
|
21
|
+
"minimatch": "^10.1.1",
|
|
22
|
+
"mz": "^2.7.0",
|
|
23
23
|
"mz-modules": "^2.1.0",
|
|
24
24
|
"object-squish": "^1.1.0",
|
|
25
|
-
"parse-url": "^
|
|
25
|
+
"parse-url": "^10.0.3",
|
|
26
26
|
"shell-quote-word": "^1.0.1",
|
|
27
|
-
"sort-keys": "^
|
|
27
|
+
"sort-keys": "^6.0.0",
|
|
28
28
|
"toposort": "^2.0.2",
|
|
29
|
-
"winston": "^3.
|
|
30
|
-
"yargs": "^
|
|
29
|
+
"winston": "^3.19.0",
|
|
30
|
+
"yargs": "^18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"bin": {
|
|
33
33
|
"git-holo": "./bin/cli.js"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
|
-
"node": "
|
|
36
|
+
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
37
37
|
},
|
|
38
38
|
"os": [
|
|
39
39
|
"darwin",
|
|
@@ -48,11 +48,8 @@
|
|
|
48
48
|
"projection"
|
|
49
49
|
],
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/jest": "^
|
|
52
|
-
"jest": "^
|
|
53
|
-
},
|
|
54
|
-
"jest": {
|
|
55
|
-
"testEnvironment": "node"
|
|
51
|
+
"@types/jest": "^30.0.0",
|
|
52
|
+
"jest": "^30.2.0"
|
|
56
53
|
},
|
|
57
54
|
"scripts": {
|
|
58
55
|
"test": "jest"
|