SAFE-template
SAFE-template copied to clipboard
dotnet CLI template for SAFE project
This (somewhat experimental) PR replaces FAKE with [Fun.Build](https://github.com/slaveOftime/Fun.Build/) for the build project. The benefits of this PR are: * Approximately 20% reduction in lock file (185 -> 150 LOC) -...
Hey guys, i never encountered this error before, but we wanted to setup a SAFE project for a new colleague and we got an error `The command "dotnet paket restore"...
Hello! I am trying SAFE for the very first time and I have problems getting the default quick start template to run correctly as is explained. It seems like the...
`npm ci` would restore dependencies specified in package-lock.json (if consistent with package.json), but not alter it. See https://docs.npmjs.com/cli/v10/commands/npm-ci. It might be faster too. If developers want to alter what's in...
We should consider excluding folders from VS Code. This can be included in the `settings.json` file: ```json "files.exclude": { ".vs": true, ".npmrc": true, ".paket": true, "**/bin": true, "**/obj": true, "**/output":...
#615 was raised because a template test was failing Should we run the template's tests as part of the package release pipeline?
Fable, you have a template with a failing test—why?! ``` dotnet new install SAFE.Template dotnet new SAFE dotnet tool restore dotnet run -- RunTests ```  https://github.com/SAFE-Stack/SAFE-template/blob/e8677f329079b5741f587289526b9fe18f00675b/Content/default/tests/Client/Client.Tests.fs#L16) Is one supposed...
This implements @isaacabraham's suggestion in #626
In light of #621 I think that we should change the run process: 1. Do a standard `dotnet restore` 2. Do a `dotnet watch run --no-restore` This has two benefits:...
Recently an issue was raised in the SAFE Dojo repo which was ultimately as the result of an error message being a bit buried. Link: https://github.com/CompositionalIT/SAFE-Dojo/issues/185 The error message in...