@meridiona/meridian 1.15.0 → 1.16.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/bin/meridian.js +6 -0
- package/package.json +2 -2
package/bin/meridian.js
CHANGED
|
@@ -84,8 +84,14 @@ if (cmd === 'setup' || cmd === 'install') {
|
|
|
84
84
|
const bundle = resolveBundle();
|
|
85
85
|
run('bash', [path.join(bundle, 'scripts', 'meridian-npm-setup.sh'), bundle, ...rest]);
|
|
86
86
|
} else if (cmd === 'update') {
|
|
87
|
+
console.log('meridian update: downloading latest release…');
|
|
88
|
+
console.log(' The package includes a pre-built Python venv (~160 MB).');
|
|
89
|
+
console.log(' First update after 1.15.0 will take ~1-3 min; subsequent updates are faster.');
|
|
90
|
+
const _updateStart = Date.now();
|
|
87
91
|
const up = npmInstallLatest();
|
|
88
92
|
if (up.status) process.exit(up.status);
|
|
93
|
+
const _elapsed = Math.round((Date.now() - _updateStart) / 1000);
|
|
94
|
+
console.log(` Downloaded in ${_elapsed}s`);
|
|
89
95
|
const bundle = resolveBundle();
|
|
90
96
|
run('bash', [path.join(bundle, 'scripts', 'meridian-npm-setup.sh'), bundle, '--skip-permissions']);
|
|
91
97
|
} else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Your project management, written by your work — local-first PM automation from real dev activity (macOS, Apple Silicon).",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"node": ">=18"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@meridiona/meridian-darwin-arm64": "1.
|
|
27
|
+
"@meridiona/meridian-darwin-arm64": "1.16.0"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|