@repokit/core 0.0.3 → 0.0.4
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/install.sh
CHANGED
|
@@ -37,7 +37,11 @@ echo "Installing Repokit CLI"
|
|
|
37
37
|
SCRIPT_DIR=$(dirname "$(readlink -f "$0")")
|
|
38
38
|
cd "$SCRIPT_DIR"
|
|
39
39
|
|
|
40
|
+
echo "Compiling from $SCRIPT_DIR"
|
|
41
|
+
|
|
40
42
|
. "$HOME/.cargo/env"
|
|
41
43
|
RUSTFLAGS="-Awarnings" cargo build --release > /dev/null
|
|
42
44
|
cargo install --path . > /dev/null
|
|
45
|
+
|
|
46
|
+
cd "$REPO_ROOT"
|
|
43
47
|
repokit
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@ use serde_json::from_str;
|
|
|
5
5
|
|
|
6
6
|
use crate::{
|
|
7
7
|
configuration::configuration::Configuration,
|
|
8
|
-
repokit::interfaces::{RepoKitCommand, RepoKitConfig},
|
|
9
8
|
executor::executor::Executor,
|
|
9
|
+
repokit::interfaces::{RepoKitCommand, RepoKitConfig},
|
|
10
10
|
};
|
|
11
11
|
|
|
12
12
|
pub struct TypescriptCommand {
|