-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert "allow installing multiple modules from a single package (#33)" #50
Merged
Conversation
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
After this it seems like default script will be required again (see description in #33 ), we might want to patch this at some point. |
1 task
some packages to fix because this did land
|
amtoine
added a commit
to amtoine/nu-git-manager
that referenced
this pull request
Dec 15, 2023
this PR - bumps Nushell to `0.88.1` - bumps Nupm to nushell/nupm@6a9618f and nushell/nupm#50 ## full changelog - move the `src/nu-git-manager/` module to `pkgs/nu-git-manager/nu-git-manager/` - move the `src/nu-git-manager-sugar/` module to `pkgs/nu-git-manager/nu-git-manager-sugar/` - split `package.nuon` into `pkgs/nu-git-manager/package.nuon` and `pkgs/nu-git-manager-sugar/package.nuon - fix all the imports, especially in the tests - fix the `install-package` test of `nu-git-manager` - clone the `install-package` test from `nu-git-manager` to `nu-git-manager-sugar` - fix the listing of modules in the toolkit ## TODO - [x] fix the CI => #135
This was referenced Dec 15, 2023
Merged
all the packages have been fixed or have a PR in the queue that will fix them 👍 |
kubouch
pushed a commit
that referenced
this pull request
Dec 17, 2023
related to - #50 - amtoine/nu-git-manager#140 - nushell/nu_scripts#700 ## Description #50 forces some packages with multiple modules to be split into multiple packages. this is the case of `amtoine/nu-git-manager` and `nushell/nu_scripts` and this PR reflects this new set of packages. > **Note** > the script given as an example in #49 might not work for now with the ongoing transition from `package.nuon` to `nupm.nuon` in #49
amtoine
added a commit
to nushell/nu_scripts
that referenced
this pull request
Feb 18, 2024
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 } ```
maxim-uvarov
pushed a commit
to maxim-uvarov/nu_scripts_reduced_size
that referenced
this pull request
Oct 12, 2024
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 } ```
maxim-uvarov
pushed a commit
to maxim-uvarov/nu_scripts_reduced_size
that referenced
this pull request
Oct 13, 2024
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 } ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
part of
reverts
Description