-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup removing legacy scala.js libs and authentication code
- Loading branch information
Showing
34 changed files
with
222 additions
and
789 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,3 @@ | ||
use flake | ||
layout node | ||
eval "$shellHook" |
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
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 |
---|---|---|
|
@@ -70,6 +70,7 @@ ensime.sbt | |
archive | ||
smartgcal | ||
.jvmopts | ||
.direnv/ | ||
/jre | ||
|
||
# Node modules | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,37 @@ | ||
{ | ||
inputs = { | ||
typelevel-nix.url = "github:typelevel/typelevel-nix"; | ||
nixpkgs.follows = "typelevel-nix/nixpkgs"; | ||
flake-utils.follows = "typelevel-nix/flake-utils"; | ||
}; | ||
|
||
outputs = { self, nixpkgs, flake-utils, typelevel-nix }: | ||
flake-utils.lib.eachDefaultSystem (system: | ||
let | ||
pkgs-x86_64 = import nixpkgs { | ||
system = "x86_64-darwin"; | ||
}; | ||
scala-cli-overlay = final: prev: { | ||
scala-cli = pkgs-x86_64.scala-cli; | ||
}; | ||
pkgs = import nixpkgs { | ||
inherit system; | ||
overlays = [ typelevel-nix.overlay scala-cli-overlay]; | ||
}; | ||
in | ||
{ | ||
devShell = pkgs.devshell.mkShell { | ||
imports = [ typelevel-nix.typelevelShell ]; | ||
packages = [ | ||
pkgs.nodePackages.vscode-langservers-extracted | ||
pkgs.nodePackages.prettier | ||
pkgs.websocat | ||
]; | ||
typelevelShell = { | ||
nodejs.enable = true; | ||
jdk.package = pkgs.jdk17; | ||
}; | ||
}; | ||
} | ||
); | ||
} |
38 changes: 0 additions & 38 deletions
38
modules/model/jvm/src/main/scala/navigate/model/config/AuthenticationConfig.scala
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
modules/model/shared/src/main/scala/navigate/model/security/package.scala
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.