Skip to content

Commit e4a22ff

Browse files
committed
allow custom type for typescript
1 parent 4611771 commit e4a22ff

File tree

6 files changed

+629
-522
lines changed

6 files changed

+629
-522
lines changed

.npmignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ tests
44
jestconfig.json
55
tsconfig.json
66
tsconfig.spec.json
7-
yarn.lock
87
.husky
98
.lintstagedrc
9+
.vscode
10+
.prettierrc
11+
rollup.config.ts
12+
vitest.config.ts
13+
pnpm-lock.yaml

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string-interpolation-js",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Simple module to format string from template",
55
"main": "./lib/index.cjs",
66
"module": "./lib/index.mjs",
@@ -28,26 +28,27 @@
2828
"author": "Alpha",
2929
"repository": {
3030
"type": "git",
31-
"url": "git@github.com:zgid123/string-interpolation-js.git"
31+
"url": "git+https://github.com/zgid123/string-interpolation-js.git"
3232
},
3333
"license": "MIT",
3434
"devDependencies": {
35-
"@rollup/plugin-commonjs": "^24.0.1",
35+
"@rollup/plugin-commonjs": "^24.1.0",
3636
"@rollup/plugin-json": "^6.0.0",
3737
"@rollup/plugin-node-resolve": "^15.0.2",
3838
"@rollup/plugin-typescript": "^11.1.0",
39-
"@typescript-eslint/eslint-plugin": "^5.57.1",
40-
"@typescript-eslint/parser": "^5.57.1",
41-
"eslint": "^8.37.0",
39+
"@typescript-eslint/eslint-plugin": "^5.59.1",
40+
"@typescript-eslint/parser": "^5.59.1",
41+
"eslint": "^8.39.0",
4242
"eslint-config-prettier": "^8.8.0",
4343
"eslint-config-typescript": "^3.0.0",
4444
"eslint-plugin-prettier": "^4.0.0",
4545
"husky": "^8.0.3",
46-
"lint-staged": "^13.2.0",
47-
"prettier": "^2.8.7",
48-
"rollup": "^3.20.2",
49-
"typescript": "^5.0.3",
50-
"vitest": "^0.29.8"
46+
"lint-staged": "^13.2.2",
47+
"prettier": "^2.8.8",
48+
"rollup": "^3.21.1",
49+
"typescript": "^5.0.4",
50+
"vite": "^4.3.3",
51+
"vitest": "^0.30.1"
5152
},
5253
"dependencies": {
5354
"tslib": "^2.5.0"

0 commit comments

Comments
 (0)