Skip to content

Commit

Permalink
feat: Add self-extracting file as an optional feature (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: Pavel Zwerschke <[email protected]>
  • Loading branch information
prsabahrami and pavelzw authored Nov 28, 2024
1 parent 6915573 commit 65b3e93
Show file tree
Hide file tree
Showing 25 changed files with 1,924 additions and 1,227 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# GitHub syntax highlighting
pixi.lock linguist-language=YAML

src/header.ps1 text eol=crlf
src/header.sh text eol=lf
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ env/
environment.yml
environment
environment.tar
environment.tar.zst
environment.tar.zstd
environment.sh
environment.ps1
pixi-pack.json
unpack/

Expand Down
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,9 @@ repos:
entry: pixi run -e lint taplo format
language: system
types: [toml]
# shellcheck
- id: shellcheck
name: shellcheck
entry: pixi run -e lint shellcheck
language: system
types: [shell]
116 changes: 72 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pixi-pack"
description = "A command line tool to pack and unpack conda environments for easy sharing"
version = "0.2.2"
version = "0.3.0"
edition = "2021"

[features]
Expand Down Expand Up @@ -56,6 +56,7 @@ url = "2.5.3"
fxhash = "0.2.1"
tempfile = "3.13.0"
walkdir = "2.5.0"
base64 = "0.22.1"

[dev-dependencies]
async-std = "1.13.0"
Expand Down
Loading

0 comments on commit 65b3e93

Please sign in to comment.