Skip to content

Commit d5b64c2

Browse files
committed
Setup the structure for the plugin
1 parent 7b29834 commit d5b64c2

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/node_modules/
2+
/dist/
3+
/coverage/
4+
npm-debug.*.log
5+
yarn.lock
6+
package-lock.json
7+
npm-debug.log.*

index.js

Whitespace-only changes.

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "java-template-engine-webpack-plugin",
3+
"version": "0.0.1",
4+
"description": "Plugin extension for html-webpack-plugin, that alters code for Java template engines",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/kushtrimh/java-template-engine-webpack-plugin.git"
12+
},
13+
"keywords": [
14+
"webpack",
15+
"java",
16+
"javascript",
17+
"template-engine",
18+
"plugin"
19+
],
20+
"author": "Kushtrim Hajrizi <kushtrimh@kushtrimh.com> (https://github.com/kushtrimh)",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/kushtrimh/java-template-engine-webpack-plugin/issues"
24+
},
25+
"homepage": "https://github.com/kushtrimh/java-template-engine-webpack-plugin#readme",
26+
"devDependencies": {
27+
"html-webpack-plugin": "^5.5.0"
28+
}
29+
}

0 commit comments

Comments
 (0)