Skip to content

Commit 4180ce8

Browse files
authored
split the package into nu-themes and nu-hooks (#700)
related to - nushell/nupm#50 ## description `nu-scripts` was not really a package but rather a set of two module packages. this feature has been removed from Nupm in nushell/nupm#50 and this PR fixes the `nu-scripts` packages. > **Note** > the files in `nu-hooks/` have been moved to `nu-hooks/nu-hooks/` to fit into the current model of Nupm this PR does not change anything from the user point of view, apart from the install that goes from ```nushell nupm install --path --force . ``` to ```nushell for pkg in (ls **/package.nuon | get name | path dirname) { nupm install --force --path $pkg } ```
1 parent 7025edf commit 4180ce8

File tree

9 files changed

+10
-3
lines changed

9 files changed

+10
-3
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
name: "nu-scripts"
3-
description: "A place to share Nushell scripts with each other"
2+
name: "nu-hooks"
3+
description: "Officially-supported hooks for Nushell"
44
documentation: "https://github.com/nushell/nu_scripts/blob/main/README.md"
55
license: "https://github.com/nushell/nu_scripts/blob/main/LICENSE"
66
version: 0.1.0
77
type: "module"
8-
modules: ["./themes/nu-themes/", "./nu-hooks/"]
98
}

themes/package.nuon

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
name: "nu-themes"
3+
description: "Officially-supported themes for Nushell"
4+
documentation: "https://github.com/nushell/nu_scripts/blob/main/README.md"
5+
license: "https://github.com/nushell/nu_scripts/blob/main/LICENSE"
6+
version: 0.1.0
7+
type: "module"
8+
}

0 commit comments

Comments
 (0)