mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
fail to run bug fix (#62)
This commit is contained in:
parent
af801b40f9
commit
cb5bba6ba0
3 changed files with 10 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -65,3 +65,4 @@ dist/
|
|||
|
||||
# Editor files and folders
|
||||
.vscode/
|
||||
.idea/
|
||||
|
|
|
@ -10,8 +10,9 @@ const { getConfig, outDir } = require('./utils');
|
|||
function convertToEmoji(text) {
|
||||
if (text == null) return;
|
||||
text = text.toString();
|
||||
if (text.match(/(?<=:\s*).*?(?=\s*:)/gs) != null) {
|
||||
var str = text.match(/(?<=:\s*).*?(?=\s*:)/gs);
|
||||
var pattern = /(?<=:\s*).*?(?=\s*:)/gs
|
||||
if (text.match(pattern) != null) {
|
||||
var str = text.match(pattern);
|
||||
str = str.filter(function (arr) {
|
||||
return /\S/.test(arr);
|
||||
});
|
||||
|
|
3
run.js
3
run.js
|
@ -1,9 +1,10 @@
|
|||
const express = require('express');
|
||||
const open = require('open');
|
||||
const defaultBrowser = require('x-default-browser');
|
||||
const path = require('path');
|
||||
const outDir = path.resolve('./dist/' || process.env.OUT_DIR);
|
||||
const app = express();
|
||||
app.use(express.static(`${outDir}/dist`));
|
||||
app.use(express.static(`${outDir}`));
|
||||
|
||||
function runCommand(){
|
||||
app.get('/',function(req,res){
|
||||
|
|
Loading…
Reference in a new issue