Skip to content

Commit 70e2b83

Browse files
committed
Removed build/ from gitignore to track build directory
1 parent 7e05e52 commit 70e2b83

11 files changed

+92
-1
lines changed

Diff for: .gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/** linguist-vendored

Diff for: .gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,3 @@ yarn-error.log*
6161
/dist/
6262
/nbdist/
6363
/.nb-gradle/
64-
build/

Diff for: build/asset-manifest.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"files": {
3+
"main.css": "/static/css/main.6f26c215.css",
4+
"main.js": "/static/js/main.10371f2b.js",
5+
"index.html": "/index.html",
6+
"main.6f26c215.css.map": "/static/css/main.6f26c215.css.map",
7+
"main.10371f2b.js.map": "/static/js/main.10371f2b.js.map"
8+
},
9+
"entrypoints": [
10+
"static/css/main.6f26c215.css",
11+
"static/js/main.10371f2b.js"
12+
]
13+
}

Diff for: build/index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1" />
7+
<meta name="theme-color" content="#1e1e1e" />
8+
<meta name="description" content="A visual scripting tool for JavaScript, built with React" />
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10+
<link rel="manifest" href="manifest.json" />
11+
<title>JavaScript Visual Scripting</title>
12+
<link href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" rel="stylesheet">
13+
<script defer="defer" src="static/js/main.10371f2b.js"></script>
14+
<link href="static/css/main.6f26c215.css" rel="stylesheet">
15+
</head>
16+
17+
<body><noscript>You need to enable JavaScript to run this app.</noscript>
18+
<div id="root"></div>
19+
</body>
20+
21+
</html>

Diff for: build/manifest.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"short_name": "JavaScript Visual Scripting",
3+
"name": "JavaScript Visual Scripting",
4+
"start_url": ".",
5+
"display": "standalone",
6+
"theme_color": "#000000",
7+
"background_color": "#ffffff"
8+
}

Diff for: build/robots.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

Diff for: build/static/css/main.6f26c215.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: build/static/css/main.6f26c215.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: build/static/js/main.10371f2b.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: build/static/js/main.10371f2b.js.LICENSE.txt

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/**
2+
* @license React
3+
* react-dom.production.min.js
4+
*
5+
* Copyright (c) Facebook, Inc. and its affiliates.
6+
*
7+
* This source code is licensed under the MIT license found in the
8+
* LICENSE file in the root directory of this source tree.
9+
*/
10+
11+
/**
12+
* @license React
13+
* react-jsx-runtime.production.min.js
14+
*
15+
* Copyright (c) Facebook, Inc. and its affiliates.
16+
*
17+
* This source code is licensed under the MIT license found in the
18+
* LICENSE file in the root directory of this source tree.
19+
*/
20+
21+
/**
22+
* @license React
23+
* react.production.min.js
24+
*
25+
* Copyright (c) Facebook, Inc. and its affiliates.
26+
*
27+
* This source code is licensed under the MIT license found in the
28+
* LICENSE file in the root directory of this source tree.
29+
*/
30+
31+
/**
32+
* @license React
33+
* scheduler.production.min.js
34+
*
35+
* Copyright (c) Facebook, Inc. and its affiliates.
36+
*
37+
* This source code is licensed under the MIT license found in the
38+
* LICENSE file in the root directory of this source tree.
39+
*/

Diff for: build/static/js/main.10371f2b.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)