Skip to content

Commit

Permalink
feat: make the utils directory into the utils package
Browse files Browse the repository at this point in the history
  • Loading branch information
Gumball12 committed Jun 4, 2022
1 parent acb09f8 commit 45e34a3
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/text-vide/package.json
Expand Up @@ -40,6 +40,7 @@
"devDependencies": {
"c8": "^7.11.3",
"standard-version": "^9.5.0",
"tsconfig": "workspace:*"
"tsconfig": "workspace:*",
"utils": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion packages/text-vide/src/getOptions.ts
@@ -1,5 +1,5 @@
import { Options } from './types';
import defaults from './utils/defaults';
import defaults from 'utils/defaults';

const DEFAULT_SEP = ['<b>', '</b>'];
const DEFAULT_FIXATION_POINT = 1;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions packages/utils/package.json
@@ -0,0 +1,11 @@
{
"name": "utils",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "vitest run"
},
"files": [
"./"
]
}
5 changes: 5 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit 45e34a3

Please sign in to comment.