Skip to content

Commit

Permalink
we have a .well-known repo; moved did.json over there
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdhamilton committed Oct 8, 2024
1 parent e535a40 commit 81c40bd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 40 deletions.
35 changes: 0 additions & 35 deletions did.json

This file was deleted.

6 changes: 1 addition & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ gulp.task("assetsCopy", () => {
return gulp.src("assets/**").pipe(gulp.dest("docs/assets"));
});

gulp.task("copyJson", function () {
return gulp.src("did.json").pipe(gulp.dest("docs/.well-known"));
});

gulp.task("templates", async () => {
return gulp
.src(["templates/pages/**/*.html.njk", "templates/pages/**/*.html"])
Expand Down Expand Up @@ -156,7 +152,7 @@ gulp.task(
"build",
gulp.series(
"repoCompilation",
gulp.parallel("assets", "assetsCopy", "templates", "copyJson")
gulp.parallel("assets", "assetsCopy", "templates")
)
);

Expand Down

0 comments on commit 81c40bd

Please sign in to comment.