Skip to content

Commit 6cbafe9

Browse files
authored
Merge pull request #340 - Build artifact and other cleanup
Repo cleanup Former-commit-id: e4d652b
1 parent 8d6f04a commit 6cbafe9

File tree

13 files changed

+13
-90
lines changed

13 files changed

+13
-90
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ __pycache__/
88
venv*
99
.ssh/
1010

11+
# Ignore python tooling dirs
12+
*.egg-info/
13+
__pycache__
14+
1115
.env
1216
**/.DS_Store
1317

@@ -26,3 +30,6 @@ tests/data/*
2630
node_modules
2731
package.json
2832
package-lock.json
33+
34+
# Ignore build artifacts
35+
dist/

.pre-commit-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ repos:
1515
# (for globally changing wording or something)
1616
#- --remove-header
1717
- --license-filepath
18-
- LICENSE_HEADER
18+
- assets/license_file_header.txt
1919
- --use-current-year
2020

21-
2221
- repo: https://github.com/astral-sh/ruff-pre-commit
2322
rev: v0.11.11
2423
hooks:
File renamed without changes.

bin/dev

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ devcontainer_install() {
7979
exit 1
8080
fi
8181

82-
if [[ ! -d "$REPO_ROOT/node_modules" ]]; then
82+
cd "$REPO_ROOT/bin/"
83+
if [[ ! -d "$REPO_ROOT/bin/node_modules" ]]; then
8384
npm init -y 1>/dev/null
8485
fi
8586
npm install @devcontainers/cli 1>&2
8687
if [[ $? -ne 0 ]]; then
8788
echo "Failed to install devcontainer CLI. Please install it manually."
8889
exit 1
8990
fi
90-
echo $REPO_ROOT/node_modules/.bin/devcontainer
91+
echo $REPO_ROOT/bin/node_modules/.bin/devcontainer
9192
}
9293

9394

@@ -97,7 +98,7 @@ find_devcontainer_bin() {
9798
bin_path=$(command -v devcontainer)
9899

99100
if [[ -z "$bin_path" ]]; then
100-
bin_path="$REPO_ROOT/node_modules/.bin/devcontainer"
101+
bin_path="$REPO_ROOT/bin/node_modules/.bin/devcontainer"
101102
fi
102103

103104
if [[ -x "$bin_path" ]]; then

dimOS.egg-info/PKG-INFO

Lines changed: 0 additions & 5 deletions
This file was deleted.

dimOS.egg-info/SOURCES.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

dimOS.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

dimOS.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/dimos-0.0.0-py3-none-any.whl

-1.11 KB
Binary file not shown.

0 commit comments

Comments
 (0)