@repokit/core 0.0.2 → 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
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@repokit/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "A knowledgebase for your repository - wrapped in a CLI",
5
+ "homepage": "https://github.com/alexfigliolia/repokit#readme",
5
6
  "license": "MIT",
6
7
  "author": "Alex Figliolia",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/alexfigliolia/repokit.git"
11
+ },
7
12
  "main": "dist/cjs/index.js",
8
13
  "module": "dist/mjs/index.js",
9
14
  "types": "dist/types/index.d.ts",
@@ -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 {
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "nodenext",
4
- "target": "esnext",
5
- "lib": ["ESNext"],
6
- "moduleResolution": "nodenext",
7
- "noUncheckedIndexedAccess": true,
8
- "exactOptionalPropertyTypes": true,
9
- "noImplicitReturns": true,
10
- "noImplicitOverride": true,
11
- "noUnusedLocals": true,
12
- "noUnusedParameters": true,
13
- "noFallthroughCasesInSwitch": true,
14
- "noPropertyAccessFromIndexSignature": true,
15
- "strict": true,
16
- "isolatedModules": true,
17
- "noUncheckedSideEffectImports": true,
18
- "moduleDetection": "force",
19
- "skipLibCheck": true,
20
- "paths": {
21
- "@repokit/core": ["./src/index.ts"]
22
- }
23
- }
24
- }