Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
react-vanilla
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Кубота
react-vanilla
Commits
43a6cfe2
Commit
43a6cfe2
authored
Jul 07, 2021
by
Иван Кубота
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added list of builds
parent
356ec6de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
build.js
build.js
+6
-0
list.html
list.html
+23
-0
No files found.
build.js
View file @
43a6cfe2
...
...
@@ -59,4 +59,9 @@ Object
fs
.
writeFileSync
(
latest
+
'.map'
,
map
);
console
.
log
(
`Build
${
dest
}
${(
code
.
length
/
1024
).
toFixed
(
2
)}
K`
)
}
fs
.
writeFileSync
(
'index.html'
,
fs
.
readFileSync
(
'list.html'
,
'utf-8'
)
.
replace
(
'$LIST$'
,
`
${
fs
.
readdirSync
(
dir
).
filter
(
a
=>
a
[
0
]
!==
'.'
).
map
(
a
=>
`<li><a href="build/
${
a
}
">
${
a
}
</a></li>`
).
join
(
'
\
n'
)}
`
)
);
})();
\ No newline at end of file
list.html
0 → 100644
View file @
43a6cfe2
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
vanilla version list
</title>
<style>
*
{
font-family
:
monospace
;
}
li
{
list-style-type
:
georgian
;
margin
:
8px
;
}
</style>
</head>
<body>
<h1>
Vanilla library builds list
</h1>
<ul>
$LIST$
</ul>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment