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

WIP: Work on completing the new build system #3579

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
}
},

// It seems that if the .npmrc file is not present, then the container can't
// be open. To not force, contributor to have an NPM account,
// we create a dummy .npmrc file if it doesn't exist
"initializeCommand": "if [ ! -f ~/.npmrc ]; then touch ~/.npmrc; fi",

"mounts": [
// Mount .npmrc from the host machine, to be able to use the host session
// This allow the user to login on their own machine once and not each time
Expand Down
1 change: 1 addition & 0 deletions .fantomasignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
src/**
tests/**
tests_external/**
!src/Fable.Build/**
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"**/bin": true,
"**/obj": true,
"**/.fake": true,
"**/packages": true,
"**/node_modules": true,
"**/bower_components": true
},
Expand Down
Loading