feat: allow string arguments on directives (#496)

* chore: update dependencies

* feat: allow string arguments on directives

resolves #325
This commit is contained in:
Kael
2021-09-22 12:27:50 +10:00
committed by GitHub
parent 65ebf6fd09
commit 1ab8483933
10 changed files with 1199 additions and 1166 deletions

View File

@@ -12,6 +12,7 @@
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch",
"lint": "eslint 'src/*.ts'",
"test": "yarn build && jest --coverage",
"prepublishOnly": "yarn build"
@@ -34,18 +35,18 @@
"svg-tags": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/jest": "^26.0.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@types/jest": "^26.0.24",
"@types/svg-tags": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@vue/compiler-dom": "3.0.5",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vue/compiler-dom": "3.2.8",
"@vue/test-utils": "2.0.0-beta.2",
"jest": "^26.0.1",
"regenerator-runtime": "^0.13.5",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^26.1.3",
"typescript": "^4.2.3",
"vue": "3.0.7"
"typescript": "^4.4.2",
"vue": "3.2.8"
}
}