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

start to remove app utils #600

Merged
merged 9 commits into from
Mar 24, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove all traces of app-utils
  • Loading branch information
antony committed Mar 23, 2021
commit 97bbf296e63ea67cc70b4dc67628f15030fad1bd
1 change: 0 additions & 1 deletion packages/adapter-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@sveltejs/app-utils": "workspace:*",
"@sveltejs/kit": "workspace:*",
"compression": "^1.7.4",
"polka": "^0.5.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/kit/src/core/filesystem/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { tmpdir } from 'os';
import { join } from 'path';
import { suite } from 'uvu';
import * as assert from 'uvu/assert';
import { copy } from './index.js.js';
import { copy } from './index.js';

const suite_copy = suite('#copy()');

let source_dir;
let dest_dir;

suite_copy.before.each(() => {
const temp_dir = mkdtempSync(join(tmpdir(), 'app-utils-'));
const temp_dir = mkdtempSync(join(tmpdir(), 'kit-core-filesystem-'));
source_dir = join(temp_dir, 'source');
dest_dir = join(temp_dir, 'dest');
mkdirSync(source_dir);
Expand Down
11 changes: 0 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.