Skip to content

Commit

Permalink
move files
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfortis committed Jan 20, 2024
1 parent 808c6d2 commit 3894c5b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
"test": "node --test"
}
}

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, test } from 'node:test'
import { equal, throws } from 'node:assert/strict'
import { remapMediaInHTML } from '../media-remaper.js'
import { remapMediaInHTML } from './media-remaper.js'


describe('Media Remapper', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, test } from 'node:test'
import { equal, deepEqual, throws } from 'node:assert/strict'
import { minifyCSS, Testable } from '../minifyCSS.js'
import { minifyCSS, Testable } from './minifyCSS.js'


describe('minifyCSS', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, test } from 'node:test'
import { equal } from 'node:assert/strict'
import { minifyHTML } from '../minifyHTML.js'
import { minifyHTML } from './minifyHTML.js'


describe('minifyHTML', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
extractStyleSheetHrefs,
extractJavaScriptSources,
removeLineContaining
} from '../parsers.js'
} from './parsers.js'


describe('Parsers', () => {
Expand Down

0 comments on commit 3894c5b

Please sign in to comment.