Skip to content

Commit e1833d2

Browse files
committed
rename 'node_modules' to 'deps'
GitHub Pages seem to ignore node_modules dir foor some reason.
1 parent c4a3467 commit e1833d2

21 files changed

+24
-24
lines changed

.gitignore

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
node_modules/*/README.md
2-
node_modules/*/CHANGELOG.md
3-
node_modules/*/CONTRIBUTING.md
4-
node_modules/*/package.json
5-
node_modules/*/bower.json
1+
deps/*/README.md
2+
deps/*/CHANGELOG.md
3+
deps/*/CONTRIBUTING.md
4+
deps/*/package.json
5+
deps/*/bower.json
66

7-
node_modules/qmlweb/lib/*.js*
8-
!node_modules/qmlweb/lib/*.min.js*
9-
node_modules/qmlweb/*.js
10-
node_modules/qmlweb/tests
11-
node_modules/qmlweb/src
7+
deps/qmlweb/lib/*.js*
8+
!deps/qmlweb/lib/*.min.js*
9+
deps/qmlweb/*.js
10+
deps/qmlweb/tests
11+
deps/qmlweb/src
1212

13-
node_modules/codemirror/bin
14-
node_modules/codemirror/addon/*
15-
node_modules/codemirror/keymap/*
16-
node_modules/codemirror/theme/*
17-
node_modules/codemirror/mode/*
18-
!node_modules/codemirror/mode/meta.js
19-
!node_modules/codemirror/mode/javascript
13+
deps/codemirror/bin
14+
deps/codemirror/addon/*
15+
deps/codemirror/keymap/*
16+
deps/codemirror/theme/*
17+
deps/codemirror/mode/*
18+
!deps/codemirror/mode/meta.js
19+
!deps/codemirror/mode/javascript
2020

2121
*~
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<meta charset="utf-8">
55
<meta name="description" content="QmlWeb : A QML engine in a web browser.">
66
<link rel="stylesheet" href="stylesheets/styles.css">
7-
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css">
8-
<script defer src="node_modules/codemirror/lib/codemirror.js"></script>
9-
<script defer src="node_modules/codemirror/mode/javascript/javascript.js"></script>
7+
<link rel="stylesheet" href="deps/codemirror/lib/codemirror.css">
8+
<script defer src="deps/codemirror/lib/codemirror.js"></script>
9+
<script defer src="deps/codemirror/mode/javascript/javascript.js"></script>
1010
<script defer src="main.js"></script>
1111
<title>QmlWeb</title>
1212
</head>

runner/runner.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<script defer src="../node_modules/qmlweb/lib/qt.min.js"></script>
6-
<script defer src="../node_modules/qmlweb/lib/qmlweb.parser.min.js"></script>
5+
<script defer src="../deps/qmlweb/lib/qt.min.js"></script>
6+
<script defer src="../deps/qmlweb/lib/qmlweb.parser.min.js"></script>
77
<script defer src="runner.js"></script>
88
<title>QmlWeb Runner</title>
99
</head>

stylesheets/styles.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('../node_modules/normalize.css/normalize.css');
1+
@import url('../deps/normalize.css/normalize.css');
22

33
body {
44
font-family: 'PT Sans', 'Liberation Sans', 'Calibri', Helvetica, Arial, sans-serif;
@@ -14,7 +14,7 @@ body {
1414
#header {
1515
background: #59b312;
1616
color: #fff;
17-
background-image: url('../node_modules/qmlweb/misc/logo.svg');
17+
background-image: url('../deps/qmlweb/misc/logo.svg');
1818
background-position: left center;
1919
background-repeat: no-repeat;
2020
background-size: contain;

0 commit comments

Comments
 (0)