Skip to content
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

feat!: standardizes the plugin interface #10

Merged
merged 14 commits into from
Jun 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: removes plugins from external API
  • Loading branch information
jmgilman committed Jun 7, 2022
commit c0ec4ce175c987acf38480ff4670953194cdf149
5 changes: 1 addition & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Internal attributes
lib = self.lib.${system};
plugins = self.plugins.${system};
plugins = import ./plugins { inherit pkgs lib; };

# Test runner
runTest = import ./tests/common.nix { inherit pkgs lib plugins; };
Expand Down Expand Up @@ -67,9 +67,6 @@
# Load lib functions
lib = (import ./lib { inherit pkgs lib plugins; });

# Load plugins
plugins = import ./plugins { inherit pkgs lib; };

# Local tests
checks = import ./tests { inherit pkgs runTest; };

Expand Down