Skip to content

Commit

Permalink
Fix web build
Browse files Browse the repository at this point in the history
  • Loading branch information
kildom committed Feb 18, 2024
1 parent acc62ec commit 83f6c03
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Convenient Regular Expressions

〚 Guide 〛 
[Syntax overview](docs/overview.md) 
〚 Installing 〛 
[Web Page](https://kildom.github.io/con-reg-exp/) 
[Tutorial](https://kildom.github.io/con-reg-exp/tutorial.html) 
[Docs](https://kildom.github.io/con-reg-exp/docs.html) 
[Web Demo](https://kildom.github.io/con-reg-exp/demo.html) 

This is a JavaScript module that provides different syntax for regular expressions.
The syntax is more convenient making it much easier to understand, review, maintain, and more.
Expand Down
1 change: 0 additions & 1 deletion docs/tmpl/docs.tmpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="stylesheet" href="docs.css" type="text/css" media="all" />
<script src="docs.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion docs/tmpl/index.tmpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="../dist/browser/con-reg-exp.min.js"></script>
<script src="con-reg-exp.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.css">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
"bugs": {
"url": "https://github.com/kildom/con-reg-exp/issues"
},
"homepage": "https://github.com/kildom/con-reg-exp#readme"
"homepage": "https://kildom.github.io/con-reg-exp/"
}
1 change: 1 addition & 0 deletions scripts/build-web-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const copyFiles = {
'docs/tmpl/npm.svg': 'web/npm.svg',
'docs/tmpl/github-mark.svg': 'web/github-mark.svg',
'docs/tmpl/docs.css': 'web/docs.css',
'dist/browser/con-reg-exp.min.js': 'web/con-reg-exp.min.js',
};

let templateData = {
Expand Down

0 comments on commit 83f6c03

Please sign in to comment.