-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fad3e20
commit 344ccb9
Showing
7 changed files
with
16 additions
and
17 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { dirname, relative } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import { relative } from "https://deno.land/[email protected]/path/mod.ts"; | ||
|
||
import type Project from "~/compiler/project.ts"; | ||
import { File } from "~/compiler/file.ts" | ||
|
@@ -11,13 +11,13 @@ export default class Package { | |
|
||
failed: boolean; | ||
|
||
constructor(project: Project, base: string, name: string = "~") { | ||
constructor(project: Project, base: string, name = "~") { | ||
this.project = project; | ||
this.failed = false; | ||
this.files = []; | ||
|
||
this.name = name; | ||
this.cwd = dirname(base); | ||
this.cwd = base; | ||
} | ||
|
||
import(filePath: string) { | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
!*.test.sa |
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
This file was deleted.
Oops, something went wrong.