1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-07 21:47:02 +09:00

move run.js to dist/js

This commit is contained in:
Andrew Simachev 2024-02-26 16:37:42 +01:00
parent 06fd1dbcfb
commit ef8c25b8a1
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
6 changed files with 7 additions and 7 deletions

2
dist/index.html vendored
View file

@ -6,7 +6,7 @@
</head>
<body>
<div id="root"></div>
<script src="./run.js" type="text/javascript"></script>
<script src="./js/run.js" type="text/javascript"></script>
<!-- %REPLACE-JS% -->
</body>

2
dist/index.web.html vendored
View file

@ -21,7 +21,7 @@
</head>
<body onload="onload();">
<div id="root"></div>
<script src="./run.js" type="text/javascript"></script>
<script src="./js/run.js" type="text/javascript"></script>
<script type="text/javascript">
function onload () {
RendererEvents.init(null, {

View file

View file

@ -177,7 +177,7 @@ class Util {
try {
fs.unlinkSync(path.join(filesPath, 'main.js'));
fs.unlinkSync(path.join(filesPath, 'run.js'));
fs.unlinkSync(path.join(filesPath, 'js/run.js'));
} catch (e) {
this.log('info', e);
};

View file

@ -9,7 +9,7 @@
"dist/index.html",
"dist/main.js",
"dist/main.js.map",
"dist/run.js",
"dist/js/run.js",
"dist/embed/**/*",
"dist/challenge/**/*",
"dist/lib/**/*",

View file

@ -170,7 +170,7 @@
"dist/main.js",
"dist/main.js.map",
"dist/index.html",
"dist/run.js",
"dist/js/run.js",
"dist/lib",
"dist/anytypeHelper",
"dist/anytypeHelper.exe",
@ -217,7 +217,7 @@
"dist/index.html",
"dist/main.js",
"dist/main.js.map",
"dist/run.js",
"dist/js/run.js",
"dist/embed/**/*",
"dist/challenge/**/*",
"dist/lib/**/*",
@ -638,4 +638,4 @@
"pre-commit": "npm run precommit && git add licenses.json"
}
}
}
}