Browse Source

Merge pull request #140 from comit-network/fix-embedded-sources

Replace negative .gitignores with build script
fix-bad-api-calls
Thomas Eizinger 3 years ago
committed by GitHub
parent
commit
2290b60ae2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      daemon/build.rs
  2. 1
      frontend/.gitignore
  3. 4
      frontend/dist/maker/.gitignore
  4. 4
      frontend/dist/taker/.gitignore

6
daemon/build.rs

@ -0,0 +1,6 @@
fn main() -> std::io::Result<()> {
std::fs::create_dir_all("../frontend/dist/maker")?;
std::fs::create_dir_all("../frontend/dist/taker")?;
Ok(())
}

1
frontend/.gitignore

@ -2,3 +2,4 @@ node_modules
.DS_Store
dist-ssr
*.local
dist/

4
frontend/dist/maker/.gitignore

@ -1,4 +0,0 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore

4
frontend/dist/taker/.gitignore

@ -1,4 +0,0 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
Loading…
Cancel
Save