Skip to content

Commit

Permalink
Merge pull request #1058 from eirslett/feature/it-example-project
Browse files Browse the repository at this point in the history
IT: modernize the example project
  • Loading branch information
eirslett committed Oct 9, 2022
2 parents 14d52ee + 2f472f0 commit 9713834
Show file tree
Hide file tree
Showing 23 changed files with 6,840 additions and 188 deletions.
3 changes: 2 additions & 1 deletion frontend-maven-plugin/src/it/example project/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
target
dist
node
node_modules
log.txt
log.txt
9 changes: 0 additions & 9 deletions frontend-maven-plugin/src/it/example project/Gruntfile.js

This file was deleted.

8 changes: 0 additions & 8 deletions frontend-maven-plugin/src/it/example project/bower.json

This file was deleted.

16 changes: 0 additions & 16 deletions frontend-maven-plugin/src/it/example project/config.js

This file was deleted.

9 changes: 0 additions & 9 deletions frontend-maven-plugin/src/it/example project/gulpfile.js

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 14 additions & 0 deletions frontend-maven-plugin/src/it/example project/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Example Project</title>
</head>
<body>
<script type="module">
import $ from "jquery";
import { square } from "./src/main/javascript/square.js";
$(document.body).text(square(5));
</script>
</body>
</html>
Loading

0 comments on commit 9713834

Please sign in to comment.