Skip to content

Commit

Permalink
Merge pull request #10 from JamesManningR/text/incrementVersion
Browse files Browse the repository at this point in the history
Increment package version
  • Loading branch information
JamesManningR committed Sep 27, 2022
2 parents b794237 + 28646da commit 1cd674b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@altgen/typer-composable",
"version": "1.0.7",
"version": "1.1.0",
"private": false,
"description": "A vue 3 composable for creating typewriter text",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/UseTypewriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export function useTypewriter (
* Then updating the array.
* @param newStrings Strings to update the current array to
*/
function updateStrings(newStrings: string[]) {
function updateStrings (newStrings: string[]) {
// validate the array
if (!newStrings || newStrings.length === 0) {
throw new Error('The strings array is empty.')
Expand Down

0 comments on commit 1cd674b

Please sign in to comment.