Skip to content

Commit

Permalink
rename stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Nov 22, 2023
1 parent 9e19fda commit 9162fdd
Show file tree
Hide file tree
Showing 21 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"private": true,
"version": "1.0.0",
"description": "standard typescript package",
"description": "typescript package using esnext",
"type": "module",
"peerDependencies": {
"svelte": "^4.0.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/package/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,17 @@ for (const dir of fs.readdirSync(join(__dirname, 'errors'))) {
});
}

test('create standard package with javascript', async () => {
test('create package with javascript', async () => {
// should also preserve filename casing
// should also correctly handle nested folders
await test_make_package('javascript');
});

test('create standard package with typescript', async () => {
await test_make_package('typescript');
test('create package with typescript using esnext', async () => {
await test_make_package('typescript-esnext');
});

test('create standard package with typescript using nodenext', async () => {
test('create package with typescript using nodenext', async () => {
await test_make_package('typescript-nodenext');
});

Expand Down

0 comments on commit 9162fdd

Please sign in to comment.