-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add devbox and generate devcontainer
- Loading branch information
1 parent
82f59c4
commit 7e12fe8
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"packages": ["[email protected]"], | ||
"shell": { | ||
"init_hook": [ | ||
"npm set prefix ~/.npm-global", | ||
"npm install -g [email protected]", | ||
"export PATH=~/.npm-global/bin:$PATH", | ||
"pnpm install" | ||
], | ||
"scripts": { | ||
"dev": "pnpm run dev", | ||
"build": "pnpm run build", | ||
"analyze": "pnpm run analyze", | ||
"generate:api": "pnpm run generate:api", | ||
"release:alpha": [ | ||
"git checkout main", | ||
"git pull", | ||
"pnpm run release", | ||
"git checkout alpha", | ||
"git merge main", | ||
"git push --follow-tags origin main alpha", | ||
"git checkout @{-2}" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"lockfile_version": "1", | ||
"packages": { | ||
"[email protected]": { | ||
"last_modified": "2024-02-10T18:15:24Z", | ||
"plugin_version": "0.0.2", | ||
"resolved": "github:NixOS/nixpkgs/10b813040df67c4039086db0f6eaf65c536886c6#nodejs_21", | ||
"source": "devbox-search", | ||
"version": "21.6.1", | ||
"systems": { | ||
"aarch64-darwin": { | ||
"outputs": [ | ||
{ | ||
"name": "out", | ||
"path": "/nix/store/042c4932zidpg21dh9g078m29bbnknzx-nodejs-21.6.1", | ||
"default": true | ||
}, | ||
{ | ||
"name": "libv8", | ||
"path": "/nix/store/hlsafi3g7vkhgwfghhgbww86mzz9qhsh-nodejs-21.6.1-libv8" | ||
} | ||
], | ||
"store_path": "/nix/store/042c4932zidpg21dh9g078m29bbnknzx-nodejs-21.6.1" | ||
}, | ||
"aarch64-linux": { | ||
"outputs": [ | ||
{ | ||
"name": "out", | ||
"path": "/nix/store/i4imnyanc4qr07sp1f6zw8j8rhj9cpzz-nodejs-21.6.1", | ||
"default": true | ||
}, | ||
{ | ||
"name": "libv8", | ||
"path": "/nix/store/w5qiqw4ahjbqm76mn330ap79pangd9ji-nodejs-21.6.1-libv8" | ||
} | ||
], | ||
"store_path": "/nix/store/i4imnyanc4qr07sp1f6zw8j8rhj9cpzz-nodejs-21.6.1" | ||
}, | ||
"x86_64-darwin": { | ||
"outputs": [ | ||
{ | ||
"name": "out", | ||
"path": "/nix/store/qzkawpmfp6i39jpvj0nga8xfh8dlbzkx-nodejs-21.6.1", | ||
"default": true | ||
}, | ||
{ | ||
"name": "libv8", | ||
"path": "/nix/store/n8jjlhmk3ym2jfpiwz4chiihadwwq5ic-nodejs-21.6.1-libv8" | ||
} | ||
], | ||
"store_path": "/nix/store/qzkawpmfp6i39jpvj0nga8xfh8dlbzkx-nodejs-21.6.1" | ||
}, | ||
"x86_64-linux": { | ||
"outputs": [ | ||
{ | ||
"name": "out", | ||
"path": "/nix/store/r9yac8ggvbp5f1wwfnr2jq82ikd5l12y-nodejs-21.6.1", | ||
"default": true | ||
}, | ||
{ | ||
"name": "libv8", | ||
"path": "/nix/store/iyxijvqs6cga8drmzhswxlfnqlx12bh1-nodejs-21.6.1-libv8" | ||
} | ||
], | ||
"store_path": "/nix/store/r9yac8ggvbp5f1wwfnr2jq82ikd5l12y-nodejs-21.6.1" | ||
} | ||
} | ||
} | ||
} | ||
} |