]> Untitled Git - lemmy.git/commitdiff
Temp removing fusebox git describe since it breaks docker.
authorDessalines <tyhou13@gmx.com>
Tue, 9 Apr 2019 06:47:08 +0000 (23:47 -0700)
committerDessalines <tyhou13@gmx.com>
Tue, 9 Apr 2019 06:47:08 +0000 (23:47 -0700)
ui/.gitignore
ui/fuse.js
ui/src/version.ts [new file with mode: 0644]

index 1e420dc4938ecc757bd122edd14e8e6d1dc51139..cc0ab540cf6c3e10587f607caf42c6149f99c2b7 100644 (file)
@@ -1,4 +1,3 @@
-src/version.ts
 dist
 .fusebox
 _site
index c70edfb849cafa0cfcf729ea788df66d2df885df..fe2c7664c3d05381f94cfb899560f02489a8e970 100644 (file)
@@ -46,12 +46,12 @@ Sparky.task('version', _ => setVersion());
 Sparky.task('clean', _ => Sparky.src('dist/').clean('dist/'));
 Sparky.task('env', _ => (isProduction = true));
 Sparky.task('copy-assets', () => Sparky.src('assets/*.svg').dest('dist/'));
-Sparky.task('dev', ['clean', 'config', 'copy-assets', 'version'], _ => {
+Sparky.task('dev', ['clean', 'config', 'copy-assets'], _ => {
   fuse.dev();
   app.hmr().watch();
   return fuse.run();
 });
-Sparky.task('prod', ['clean', 'env', 'config', 'copy-assets', 'version'], _ => {
+Sparky.task('prod', ['clean', 'env', 'config', 'copy-assets'], _ => {
   // fuse.dev({ reload: true }); // remove after demo
   return fuse.run();
 });
diff --git a/ui/src/version.ts b/ui/src/version.ts
new file mode 100644 (file)
index 0000000..3f71007
--- /dev/null
@@ -0,0 +1 @@
+export let version: string = "v0.0.2-0-gdae6651";
\ No newline at end of file