-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add the root dir of the module to exports in the package.json
- Loading branch information
Showing
12 changed files
with
99 additions
and
66 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
48 changes: 28 additions & 20 deletions
48
test/manual/watch-dependencies-bootstrap/src/views/home.html
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,23 +1,31 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Test</title> | ||
<link rel="icon" href="apple.png"> | ||
<link href="bootstrap" rel="stylesheet"> | ||
<link href="./style.css" rel="stylesheet"> | ||
<script src="https://code.jquery.com/jquery-1.12.4.min.js" defer="defer"></script> | ||
<script src="bootstrap" defer="defer"></script> | ||
<script src="./main.js" defer="defer"></script> | ||
</head> | ||
<body> | ||
<%~ includeFile('/src/views/partials/header') %> | ||
<h1>Hello World!</h1> | ||
<img src="apple.png"> | ||
<p><button type="button" class="btn-modal btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal</button></p> | ||
<%~ includeFile('/src/views/partials/footer') %> | ||
<%~ includeFile('/src/views/partials/modal.html') %> | ||
<head> | ||
<title>Test</title> | ||
<link rel="icon" href="apple.png" /> | ||
<link href="bootstrap" rel="stylesheet" /> | ||
<link href="./style.css" rel="stylesheet" /> | ||
<script src="https://code.jquery.com/jquery-1.12.4.min.js" defer="defer"></script> | ||
<script src="bootstrap" defer="defer"></script> | ||
<script src="./main.js" defer="defer"></script> | ||
</head> | ||
<body> | ||
<%~ include('/src/views/partials/header') %> | ||
<h1>Hello World!</h1> | ||
<img src="apple.png" /> | ||
<p> | ||
<button | ||
type="button" | ||
class="btn-modal btn btn-primary" | ||
data-toggle="modal" | ||
data-target="#exampleModal" | ||
data-whatever="@mdo"> | ||
Open modal | ||
</button> | ||
</p> | ||
<%~ include('/src/views/partials/footer') %> <%~ include('/src/views/partials/modal.html') %> | ||
|
||
<script src="./app.js"></script> | ||
<script src="@test-fixtures/js"></script> | ||
</body> | ||
<script src="./app.js"></script> | ||
<script src="@test-fixtures/js"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<link rel="icon" href="apple.png" /> | ||
<title><%= title %></title> | ||
<script src="./main.js"></script> | ||
</head> | ||
<body> | ||
<%~ include('/src/views/partials/header') %> | ||
<h1>Hello World!</h1> | ||
<img src="apple.png" /> | ||
<%~ include('/src/views/partials/footer') %> | ||
</body> | ||
</html> |
File renamed without changes.
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,12 +1,12 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<link rel="icon" href="favicon.ico"> | ||
<title>Home</title> | ||
</head> | ||
<body> | ||
<%~ includeFile('/src/views/partials/header') %> | ||
<h1>Home</h1> | ||
<%~ includeFile('/src/views/partials/footer') %> | ||
</body> | ||
<head> | ||
<link rel="icon" href="favicon.ico" /> | ||
<title>Home</title> | ||
</head> | ||
<body> | ||
<%~ include('/src/views/partials/header') %> | ||
<h1>Home</h1> | ||
<%~ include('/src/views/partials/footer') %> | ||
</body> | ||
</html> |