-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add arbitrary input <> template matching
Attempts to solve #2
- Loading branch information
1 parent
5585490
commit fa36cc4
Showing
3 changed files
with
377 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,41 @@ | ||
{ | ||
"name": "vite-plugin-nodecg", | ||
"version": "1.0.2", | ||
"description": "Vite plugin to enable its use with NodeCG", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"keywords": [ | ||
"vite-plugin" | ||
], | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"type": "module", | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "tsc --watch" | ||
}, | ||
"author": { | ||
"name": "Daniel Shields", | ||
"email": "hello@danielshields.uk", | ||
"url": "https://danielshields.uk" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dan-shields/vite-plugin-nodecg.git" | ||
}, | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@types/node": "^18.11.18", | ||
"rollup": "^3.10.0", | ||
"typescript": "^4.9.4", | ||
"vite": "^4.0.4" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0-rc.12" | ||
}, | ||
"peerDependencies": { | ||
"vite": "^4.0.4" | ||
} | ||
"name": "vite-plugin-nodecg", | ||
"version": "2.0.0-rc1", | ||
"description": "Vite plugin to enable its use with NodeCG", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"keywords": [ | ||
"vite-plugin" | ||
], | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"type": "module", | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "tsc --watch" | ||
}, | ||
"author": { | ||
"name": "Daniel Shields", | ||
"email": "hello@danielshields.uk", | ||
"url": "https://danielshields.uk" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dan-shields/vite-plugin-nodecg.git" | ||
}, | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@types/node": "^18.11.18", | ||
"rollup": "^3.10.0", | ||
"typescript": "^4.9.4", | ||
"vite": "^4.0.4" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0-rc.12", | ||
"minimatch": "^6.1.5" | ||
}, | ||
"peerDependencies": { | ||
"vite": "^4.0.4" | ||
} | ||
} |
Oops, something went wrong.