mirror of https://github.com/jkjoy/sunpeiwen.git
20230925
This commit is contained in:
commit
5d2d87c740
|
@ -0,0 +1,58 @@
|
||||||
|
run-name: Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
release:
|
||||||
|
types:
|
||||||
|
- published
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
ref: main
|
||||||
|
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: "18.x"
|
||||||
|
|
||||||
|
- name: Install Hexo
|
||||||
|
run: |
|
||||||
|
npm install hexo-cli -g
|
||||||
|
|
||||||
|
- name: Cache Modules
|
||||||
|
uses: actions/cache@v1
|
||||||
|
id: cache-modules
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{runner.OS}}-${{hashFiles('**/package-lock.json')}}
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
if: steps.cache-modules.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
- name: npm Install
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
- name: Generate
|
||||||
|
run: |
|
||||||
|
hexo clean
|
||||||
|
hexo generate
|
||||||
|
hexo douban
|
||||||
|
- name: Deploy
|
||||||
|
run: |
|
||||||
|
git config --global user.name "jkjoy"
|
||||||
|
git config --global user.email "jkjoy@live.cn"
|
||||||
|
git clone https://github.com/jkjoy/blog.git .deploy_git
|
||||||
|
export TZ='Asia/Shanghai'
|
||||||
|
hexo deploy
|
|
@ -0,0 +1,7 @@
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
db.json
|
||||||
|
*.log
|
||||||
|
node_modules/
|
||||||
|
public/
|
||||||
|
.deploy*/
|
|
@ -0,0 +1,939 @@
|
||||||
|
# Main menu navigation (導航目錄)
|
||||||
|
# see https://butterfly.js.org/posts/4aa8abbe/#導航菜單
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
menu:
|
||||||
|
主页: / || fas fa-home
|
||||||
|
说说: /talks/ ||fas fa-comment
|
||||||
|
相册: /photos/ || fas fa-camera
|
||||||
|
链接||fas fa-link:
|
||||||
|
朋友: /fcircle/ || far fa-circle
|
||||||
|
留言: /gbook/ || fas fa-link
|
||||||
|
友链: /link/ || fas fa-link
|
||||||
|
关于: /about/ || fas fa-heart
|
||||||
|
文章||fas fa-book:
|
||||||
|
归档: /archives/ || fas fa-archive
|
||||||
|
标签: /tags/ || fas fa-tags
|
||||||
|
分类: /categories/ || fas fa-folder-open
|
||||||
|
列表||fas fa-list:
|
||||||
|
电影: /movies/ || fas fa-video
|
||||||
|
歌单: /songs/ || fal fas fa-music
|
||||||
|
书单: /books/ || fas fa-book
|
||||||
|
游戏: /games/ || fas fa-gamepad
|
||||||
|
|
||||||
|
nav:
|
||||||
|
logo: https://s2.loli.net/2023/04/08/P723CaQcKIpJ96W.png # image
|
||||||
|
display_title: true
|
||||||
|
fixed: true # fixed navigation bar
|
||||||
|
|
||||||
|
# Code Blocks (代碼相關)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
highlight_theme: mac light # darker / pale night / light / ocean / mac / mac light / false
|
||||||
|
highlight_copy: true # copy button
|
||||||
|
highlight_lang: true # show the code language
|
||||||
|
highlight_shrink: false # true: shrink the code blocks / false: expand the code blocks | none: expand code blocks and hide the button
|
||||||
|
highlight_height_limit: false # unit: px
|
||||||
|
code_word_wrap: false
|
||||||
|
|
||||||
|
# copy settings
|
||||||
|
# copyright: Add the copyright information after copied content (複製的內容後面加上版權信息)
|
||||||
|
copy:
|
||||||
|
enable: false
|
||||||
|
copyright:
|
||||||
|
enable: true
|
||||||
|
limit_count: 50
|
||||||
|
|
||||||
|
# social settings (社交圖標設置)
|
||||||
|
# formal:
|
||||||
|
# icon: link || the description
|
||||||
|
social:
|
||||||
|
fab fa-github: https://github.com/jkftyb || Github
|
||||||
|
fas fa-envelope: mailto:imsunpw@gmail.com || Email
|
||||||
|
fab fa-qq: tencent://message/?uin=122790336&Site=&Menu=yes || QQ
|
||||||
|
fab fa-mastodon: https://jiong.us/@jkjoy || Mastodon
|
||||||
|
|
||||||
|
# search (搜索)
|
||||||
|
# see https://butterfly.js.org/posts/ceeb73f/#搜索系統
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Algolia search
|
||||||
|
algolia_search:
|
||||||
|
enable: false
|
||||||
|
hits:
|
||||||
|
per_page: 6
|
||||||
|
|
||||||
|
# Local search
|
||||||
|
local_search:
|
||||||
|
enable: false
|
||||||
|
preload: false
|
||||||
|
CDN:
|
||||||
|
|
||||||
|
# Docsearch
|
||||||
|
# https://docsearch.algolia.com/
|
||||||
|
docsearch:
|
||||||
|
enable: false
|
||||||
|
appId:
|
||||||
|
apiKey:
|
||||||
|
indexName:
|
||||||
|
option:
|
||||||
|
|
||||||
|
# Math (數學)
|
||||||
|
# --------------------------------------
|
||||||
|
# About the per_page
|
||||||
|
# if you set it to true, it will load mathjax/katex script in each page (true 表示每一頁都加載js)
|
||||||
|
# if you set it to false, it will load mathjax/katex script according to your setting (add the 'mathjax: true' in page's front-matter)
|
||||||
|
# (false 需要時加載,須在使用的 Markdown Front-matter 加上 mathjax: true)
|
||||||
|
|
||||||
|
# MathJax
|
||||||
|
mathjax:
|
||||||
|
enable: false
|
||||||
|
per_page: false
|
||||||
|
|
||||||
|
# KaTeX
|
||||||
|
katex:
|
||||||
|
enable: false
|
||||||
|
per_page: false
|
||||||
|
hide_scrollbar: true
|
||||||
|
|
||||||
|
# Image (圖片設置)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Favicon(網站圖標)
|
||||||
|
favicon: https://s2.loli.net/2023/04/08/Jm6eKFzknv1QgXU.png
|
||||||
|
|
||||||
|
# Avatar (頭像)
|
||||||
|
avatar:
|
||||||
|
img: https://q1.qlogo.cn/g?b=qq&nk=80116747&s=100
|
||||||
|
effect: false
|
||||||
|
|
||||||
|
# Disable all banner image
|
||||||
|
disable_top_img: true
|
||||||
|
|
||||||
|
# The banner image of home page
|
||||||
|
index_img: https://s2.loli.net/2023/04/08/y4uckZVbY6XiUva.jpg
|
||||||
|
|
||||||
|
# If the banner of page not setting, it will show the top_img
|
||||||
|
default_top_img: https://s2.loli.net/2023/04/08/y4uckZVbY6XiUva.jpg
|
||||||
|
|
||||||
|
# The banner image of archive page
|
||||||
|
archive_img:
|
||||||
|
|
||||||
|
# If the banner of tag page not setting, it will show the top_img
|
||||||
|
# note: tag page, not tags page (子標籤頁面的 top_img)
|
||||||
|
tag_img:
|
||||||
|
|
||||||
|
# The banner image of tag page
|
||||||
|
# format:
|
||||||
|
# - tag name: xxxxx
|
||||||
|
tag_per_img:
|
||||||
|
|
||||||
|
# If the banner of category page not setting, it will show the top_img
|
||||||
|
# note: category page, not categories page (子分類頁面的 top_img)
|
||||||
|
category_img:
|
||||||
|
|
||||||
|
# The banner image of category page
|
||||||
|
# format:
|
||||||
|
# - category name: xxxxx
|
||||||
|
category_per_img:
|
||||||
|
|
||||||
|
cover:
|
||||||
|
# display the cover or not (是否顯示文章封面)
|
||||||
|
index_enable: true
|
||||||
|
aside_enable: true
|
||||||
|
archives_enable: true
|
||||||
|
# the position of cover in home page (封面顯示的位置)
|
||||||
|
# left/right/both
|
||||||
|
position: left
|
||||||
|
|
||||||
|
# When cover is not set, the default cover is displayed (當沒有設置cover時,默認的封面顯示)
|
||||||
|
default_cover:
|
||||||
|
- https://blogcdn.loliko.cn/cover/cover2.png
|
||||||
|
- https://blogcdn.loliko.cn/cover/cover1.png
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Replace Broken Images (替換無法顯示的圖片)
|
||||||
|
error_img:
|
||||||
|
flink: /img/friend_404.gif
|
||||||
|
post_page: /img/404.jpg
|
||||||
|
|
||||||
|
# A simple 404 page
|
||||||
|
error_404:
|
||||||
|
enable: true
|
||||||
|
subtitle: 'Page Not Found'
|
||||||
|
background: https://i.loli.net/2020/05/19/aKOcLiyPl2JQdFD.png
|
||||||
|
|
||||||
|
post_meta:
|
||||||
|
page: # Home Page
|
||||||
|
date_type: created # created or updated or both 主頁文章日期是創建日或者更新日或都顯示
|
||||||
|
date_format: date # date/relative 顯示日期還是相對日期
|
||||||
|
categories: true # true or false 主頁是否顯示分類
|
||||||
|
tags: true # true or false 主頁是否顯示標籤
|
||||||
|
label: true # true or false 顯示描述性文字
|
||||||
|
post:
|
||||||
|
date_type: both # created or updated or both 文章頁日期是創建日或者更新日或都顯示
|
||||||
|
date_format: date # date/relative 顯示日期還是相對日期
|
||||||
|
categories: true # true or false 文章頁是否顯示分類
|
||||||
|
tags: true # true or false 文章頁是否顯示標籤
|
||||||
|
label: true # true or false 顯示描述性文字
|
||||||
|
|
||||||
|
# wordcount (字數統計)
|
||||||
|
# see https://butterfly.js.org/posts/ceeb73f/#字數統計
|
||||||
|
wordcount:
|
||||||
|
enable: true
|
||||||
|
post_wordcount: true
|
||||||
|
min2read: true
|
||||||
|
total_wordcount: true
|
||||||
|
|
||||||
|
# Display the article introduction on homepage
|
||||||
|
# 1: description
|
||||||
|
# 2: both (if the description exists, it will show description, or show the auto_excerpt)
|
||||||
|
# 3: auto_excerpt (default)
|
||||||
|
# false: do not show the article introduction
|
||||||
|
index_post_content:
|
||||||
|
method: 3
|
||||||
|
length: 500 # if you set method to 2 or 3, the length need to config
|
||||||
|
|
||||||
|
# anchor
|
||||||
|
anchor:
|
||||||
|
button:
|
||||||
|
enable: false
|
||||||
|
always_show: false
|
||||||
|
icon: # the unicode value of Font Awesome icon, such as '\3423'
|
||||||
|
auto_update: false # when you scroll in post, the URL will update according to header id.
|
||||||
|
|
||||||
|
# Post
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# toc (目錄)
|
||||||
|
toc:
|
||||||
|
post: true
|
||||||
|
page: false
|
||||||
|
number: true
|
||||||
|
expand: false
|
||||||
|
style_simple: false # for post
|
||||||
|
scroll_percent: true
|
||||||
|
|
||||||
|
post_copyright:
|
||||||
|
enable: true
|
||||||
|
decode: true
|
||||||
|
author_href:
|
||||||
|
license: CC BY-NC-SA 4.0
|
||||||
|
license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||||
|
|
||||||
|
# Sponsor/reward
|
||||||
|
reward:
|
||||||
|
enable: true
|
||||||
|
QR_code:
|
||||||
|
- img: https://s2.loli.net/2023/04/01/TmOidERwqLMfBCj.png
|
||||||
|
link:
|
||||||
|
text: 微信
|
||||||
|
- img: https://s2.loli.net/2023/04/01/BsfZ3I9zmqM5uwb.png
|
||||||
|
link:
|
||||||
|
text: 支付宝
|
||||||
|
|
||||||
|
# Post edit
|
||||||
|
# Easily browse and edit blog source code online.
|
||||||
|
post_edit:
|
||||||
|
enable: true
|
||||||
|
# url: https://github.com/jkjoy/loliko/edit/main/subdirectory-name/
|
||||||
|
# For example: https://github.com/jerryc127/butterfly.js.org/edit/main/source/
|
||||||
|
url: https://github.com/jkjoy/loliko/edit/main/source/
|
||||||
|
|
||||||
|
# Related Articles
|
||||||
|
related_post:
|
||||||
|
enable: true
|
||||||
|
limit: 3 # Number of posts displayed
|
||||||
|
date_type: created # or created or updated 文章日期顯示創建日或者更新日
|
||||||
|
|
||||||
|
# figcaption (圖片描述文字)
|
||||||
|
photofigcaption: false
|
||||||
|
|
||||||
|
# post_pagination (分頁)
|
||||||
|
# value: 1 || 2 || false
|
||||||
|
# 1: The 'next post' will link to old post
|
||||||
|
# 2: The 'next post' will link to new post
|
||||||
|
# false: disable pagination
|
||||||
|
post_pagination: 1
|
||||||
|
|
||||||
|
# Displays outdated notice for a post (文章過期提醒)
|
||||||
|
noticeOutdate:
|
||||||
|
enable: true
|
||||||
|
style: flat # style: simple/flat
|
||||||
|
limit_day: 180 # When will it be shown
|
||||||
|
position: top # position: top/bottom
|
||||||
|
message_prev: 文章已经发布
|
||||||
|
message_next: 天,有些内容可能已过期不再适用
|
||||||
|
|
||||||
|
# Share System (分享功能)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# AddThis
|
||||||
|
# https://www.addthis.com/
|
||||||
|
addThis:
|
||||||
|
enable: false
|
||||||
|
pubid:
|
||||||
|
|
||||||
|
# Share.js
|
||||||
|
# https://github.com/overtrue/share.js
|
||||||
|
sharejs:
|
||||||
|
enable: true
|
||||||
|
sites: wechat,weibo,qq
|
||||||
|
|
||||||
|
# AddToAny
|
||||||
|
# https://www.addtoany.com/
|
||||||
|
addtoany:
|
||||||
|
enable: false
|
||||||
|
item: facebook,twitter,wechat,sina_weibo,facebook_messenger,email,copy_link
|
||||||
|
|
||||||
|
# Comments System
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
comments:
|
||||||
|
# Up to two comments system, the first will be shown as default
|
||||||
|
# Choose: Disqus/Disqusjs/Livere/Gitalk/Valine/Waline/Utterances/Facebook Comments/Twikoo/Giscus/Remark42/Artalk
|
||||||
|
use: Twikoo # Twikoo,Disqus
|
||||||
|
text: true # Display the comment name next to the button
|
||||||
|
# lazyload: The comment system will be load when comment element enters the browser's viewport.
|
||||||
|
# If you set it to true, the comment count will be invalid
|
||||||
|
lazyload: true
|
||||||
|
count: true # Display comment count in post's top_img
|
||||||
|
card_post_count: true # Display comment count in Home Page
|
||||||
|
|
||||||
|
# disqus
|
||||||
|
# https://disqus.com/
|
||||||
|
disqus:
|
||||||
|
shortname:
|
||||||
|
apikey: # For newest comments widget
|
||||||
|
|
||||||
|
# valine
|
||||||
|
# https://valine.js.org
|
||||||
|
valine:
|
||||||
|
appId: # leancloud application app id
|
||||||
|
appKey: # leancloud application app key
|
||||||
|
avatar: monsterid # gravatar style https://valine.js.org/#/avatar
|
||||||
|
serverURLs: # This configuration is suitable for domestic custom domain name users, overseas version will be automatically detected (no need to manually fill in)
|
||||||
|
bg: # valine background
|
||||||
|
visitor: false
|
||||||
|
option:
|
||||||
|
|
||||||
|
# waline - A simple comment system with backend support fork from Valine
|
||||||
|
# https://waline.js.org/
|
||||||
|
waline:
|
||||||
|
serverURL: https://waline.loliko.cn # Waline server address url
|
||||||
|
bg: # waline background
|
||||||
|
pageview: true
|
||||||
|
option:
|
||||||
|
|
||||||
|
# Twikoo
|
||||||
|
# https://github.com/imaegoo/twikoo
|
||||||
|
twikoo:
|
||||||
|
envId: https://twikoo.ima.cm
|
||||||
|
region:
|
||||||
|
visitor: false
|
||||||
|
option:
|
||||||
|
|
||||||
|
# Artalk
|
||||||
|
# https://artalk.js.org/guide/frontend/config.html
|
||||||
|
artalk:
|
||||||
|
server: https://artalk.loliko.cn
|
||||||
|
site: jkjoy
|
||||||
|
visitor: false
|
||||||
|
option:
|
||||||
|
|
||||||
|
# Artitalk
|
||||||
|
# see https://artitalk.js.org/
|
||||||
|
artitalk:
|
||||||
|
enable: true
|
||||||
|
serverURL: https://api.jkjoy.cn
|
||||||
|
appId: 9klpB2r6ycziLr46l5kfnPDB-MdYXbMMI
|
||||||
|
appKey: 9lgge7Dc4MMQxYOBIsomON6S
|
||||||
|
path:
|
||||||
|
js: https://unpkg.com/artitalk
|
||||||
|
option:
|
||||||
|
front_matter:
|
||||||
|
comments: false
|
||||||
|
|
||||||
|
# Chat Services
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Chat Button [recommend]
|
||||||
|
# It will create a button in the bottom right corner of website, and hide the origin button
|
||||||
|
chat_btn: false
|
||||||
|
|
||||||
|
# The origin chat button is displayed when scrolling up, and the button is hidden when scrolling down
|
||||||
|
chat_hide_show: false
|
||||||
|
|
||||||
|
# chatra
|
||||||
|
# https://chatra.io/
|
||||||
|
chatra:
|
||||||
|
enable: false
|
||||||
|
id:
|
||||||
|
|
||||||
|
# tidio
|
||||||
|
# https://www.tidio.com/
|
||||||
|
tidio:
|
||||||
|
enable: false
|
||||||
|
public_key:
|
||||||
|
|
||||||
|
# daovoice
|
||||||
|
# http://dashboard.daovoice.io/app
|
||||||
|
daovoice:
|
||||||
|
enable: false
|
||||||
|
app_id:
|
||||||
|
|
||||||
|
# gitter
|
||||||
|
# https://gitter.im/
|
||||||
|
gitter:
|
||||||
|
enable: false
|
||||||
|
room:
|
||||||
|
|
||||||
|
# crisp
|
||||||
|
# https://crisp.chat/en/
|
||||||
|
crisp:
|
||||||
|
enable: false
|
||||||
|
website_id:
|
||||||
|
|
||||||
|
# messenger
|
||||||
|
# https://developers.facebook.com/docs/messenger-platform/discovery/facebook-chat-plugin/
|
||||||
|
messenger:
|
||||||
|
enable: false
|
||||||
|
pageID:
|
||||||
|
lang: zh_CN # Language en_US/zh_CN/zh_TW and so on
|
||||||
|
|
||||||
|
# Footer Settings
|
||||||
|
# --------------------------------------
|
||||||
|
footer:
|
||||||
|
owner:
|
||||||
|
enable: true
|
||||||
|
since: 2011
|
||||||
|
custom_text: 本站内容如有侵犯到你的权益,请联系我删除
|
||||||
|
copyright: true # Copyright of theme and framework
|
||||||
|
|
||||||
|
# Analysis
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Baidu Analytics
|
||||||
|
# https://tongji.baidu.com/web/welcome/login
|
||||||
|
baidu_analytics:
|
||||||
|
|
||||||
|
# Google Analytics
|
||||||
|
# https://analytics.google.com/analytics/web/
|
||||||
|
google_analytics:
|
||||||
|
|
||||||
|
# Cloudflare Analytics
|
||||||
|
# https://www.cloudflare.com/zh-tw/web-analytics/
|
||||||
|
cloudflare_analytics: 5e6dd056580d4e1cacdf99a59f2493fc
|
||||||
|
|
||||||
|
# Microsoft Clarity
|
||||||
|
# https://clarity.microsoft.com/
|
||||||
|
microsoft_clarity:
|
||||||
|
|
||||||
|
# Advertisement
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Google Adsense (谷歌廣告)
|
||||||
|
google_adsense:
|
||||||
|
enable: true
|
||||||
|
auto_ads: true
|
||||||
|
js: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
|
||||||
|
client: pub-5243038922921203
|
||||||
|
enable_page_level_ads: true
|
||||||
|
|
||||||
|
# Insert ads manually (手動插入廣告)
|
||||||
|
#ad:
|
||||||
|
#index: <a href="https://www.dogyun.com/?ref=jkjoy" target="_blank">狗云</a>
|
||||||
|
#aside: <a href="https://www.dogyun.com/?ref=jkjoy" target="_blank">狗云</a>
|
||||||
|
#post:
|
||||||
|
|
||||||
|
# Verification (站長驗證)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
site_verification:
|
||||||
|
# - name: google-site-verification
|
||||||
|
# content: xxxxxx
|
||||||
|
# - name: baidu-site-verification
|
||||||
|
# content: xxxxxxx
|
||||||
|
|
||||||
|
# Beautify/Effect (美化/效果)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Theme color for customize
|
||||||
|
# Notice: color value must in double quotes like "#000" or may cause error!
|
||||||
|
|
||||||
|
# theme_color:
|
||||||
|
# enable: true
|
||||||
|
# main: "#49B1F5"
|
||||||
|
# paginator: "#00c4b6"
|
||||||
|
# button_hover: "#FF7242"
|
||||||
|
# text_selection: "#00c4b6"
|
||||||
|
# link_color: "#99a9bf"
|
||||||
|
# meta_color: "#858585"
|
||||||
|
# hr_color: "#A4D8FA"
|
||||||
|
# code_foreground: "#F47466"
|
||||||
|
# code_background: "rgba(27, 31, 35, .05)"
|
||||||
|
# toc_color: "#00c4b6"
|
||||||
|
# blockquote_padding_color: "#49b1f5"
|
||||||
|
# blockquote_background_color: "#49b1f5"
|
||||||
|
# scrollbar_color: "#49b1f5"
|
||||||
|
# meta_theme_color_light: "ffffff"
|
||||||
|
# meta_theme_color_dark: "#0d0d0d"
|
||||||
|
|
||||||
|
# The top_img settings of home page
|
||||||
|
# default: top img - full screen, site info - middle (默認top_img全屏,site_info在中間)
|
||||||
|
# The position of site info, eg: 300px/300em/300rem/10% (主頁標題距離頂部距離)
|
||||||
|
index_site_info_top:
|
||||||
|
# The height of top_img, eg: 300px/300em/300rem (主頁top_img高度)
|
||||||
|
index_top_img_height:
|
||||||
|
|
||||||
|
# The user interface setting of category and tag page (category和tag頁的UI設置)
|
||||||
|
# index - same as Homepage UI (index 值代表 UI將與首頁的UI一樣)
|
||||||
|
# default - same as archives UI 默認跟archives頁面UI一樣
|
||||||
|
category_ui: # 留空或 index
|
||||||
|
tag_ui: # 留空或 index
|
||||||
|
|
||||||
|
# Website Background (設置網站背景)
|
||||||
|
# can set it to color or image (可設置圖片 或者 顔色)
|
||||||
|
# The formal of image: url(http://xxxxxx.com/xxx.jpg)
|
||||||
|
background:
|
||||||
|
|
||||||
|
# Footer Background
|
||||||
|
footer_bg: false
|
||||||
|
|
||||||
|
# the position of bottom right button/default unit: px (右下角按鈕距離底部的距離/默認單位為px)
|
||||||
|
rightside-bottom:
|
||||||
|
|
||||||
|
# Enter transitions (開啓網頁進入效果)
|
||||||
|
enter_transitions: true
|
||||||
|
|
||||||
|
# Background effects (背景特效)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# canvas_ribbon (靜止彩帶背景)
|
||||||
|
# See: https://github.com/hustcc/ribbon.js
|
||||||
|
canvas_ribbon:
|
||||||
|
enable: false
|
||||||
|
size: 150
|
||||||
|
alpha: 0.6
|
||||||
|
zIndex: -1
|
||||||
|
click_to_change: false
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Fluttering Ribbon (動態彩帶)
|
||||||
|
canvas_fluttering_ribbon:
|
||||||
|
enable: false
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# canvas_nest
|
||||||
|
# https://github.com/hustcc/canvas-nest.js
|
||||||
|
canvas_nest:
|
||||||
|
enable: false
|
||||||
|
color: '0,0,255' #color of lines, default: '0,0,0'; RGB values: (R,G,B).(note: use ',' to separate.)
|
||||||
|
opacity: 0.7 # the opacity of line (0~1), default: 0.5.
|
||||||
|
zIndex: -1 # z-index property of the background, default: -1.
|
||||||
|
count: 99 # the number of lines, default: 99.
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Typewriter Effect (打字效果)
|
||||||
|
# https://github.com/disjukr/activate-power-mode
|
||||||
|
activate_power_mode:
|
||||||
|
enable: true
|
||||||
|
colorful: false # open particle animation (冒光特效)
|
||||||
|
shake: false # open shake (抖動特效)
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Mouse click effects: fireworks (鼠標點擊效果: 煙火特效)
|
||||||
|
fireworks:
|
||||||
|
enable: false
|
||||||
|
zIndex: 9999 # -1 or 9999
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Mouse click effects: Heart symbol (鼠標點擊效果: 愛心)
|
||||||
|
click_heart:
|
||||||
|
enable: false
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Mouse click effects: words (鼠標點擊效果: 文字)
|
||||||
|
ClickShowText:
|
||||||
|
enable: false
|
||||||
|
text:
|
||||||
|
# - I
|
||||||
|
# - LOVE
|
||||||
|
# - YOU
|
||||||
|
fontSize: 15px
|
||||||
|
random: false
|
||||||
|
mobile: false
|
||||||
|
|
||||||
|
# Default display mode (網站默認的顯示模式)
|
||||||
|
# light (default) / dark
|
||||||
|
display_mode:
|
||||||
|
|
||||||
|
# Beautify (美化頁面顯示)
|
||||||
|
beautify:
|
||||||
|
enable: true
|
||||||
|
field: post # site/post
|
||||||
|
title-prefix-icon: '\f0c1'
|
||||||
|
title-prefix-icon-color: '#F47466'
|
||||||
|
|
||||||
|
# Global font settings
|
||||||
|
# Don't modify the following settings unless you know how they work (非必要不要修改)
|
||||||
|
font:
|
||||||
|
global-font-size:
|
||||||
|
code-font-size:
|
||||||
|
font-family:
|
||||||
|
code-font-family:
|
||||||
|
|
||||||
|
# Font settings for the site title and site subtitle
|
||||||
|
# 左上角網站名字 主頁居中網站名字
|
||||||
|
blog_title_font:
|
||||||
|
font_link:
|
||||||
|
font-family:
|
||||||
|
|
||||||
|
# The setting of divider icon (水平分隔線圖標設置)
|
||||||
|
hr_icon:
|
||||||
|
enable: true
|
||||||
|
icon: # the unicode value of Font Awesome icon, such as '\3423'
|
||||||
|
icon-top:
|
||||||
|
|
||||||
|
# the subtitle on homepage (主頁subtitle)
|
||||||
|
subtitle:
|
||||||
|
enable: true
|
||||||
|
# Typewriter Effect (打字效果)
|
||||||
|
effect: true
|
||||||
|
# Customize typed.js (配置typed.js)
|
||||||
|
# https://github.com/mattboldt/typed.js/#customization
|
||||||
|
typed_option:
|
||||||
|
# source 調用第三方服務
|
||||||
|
# source: false 關閉調用
|
||||||
|
# source: 1 調用一言網的一句話(簡體) https://hitokoto.cn/
|
||||||
|
# source: 2 調用一句網(簡體) https://yijuzhan.com/
|
||||||
|
# source: 3 調用今日詩詞(簡體) https://www.jinrishici.com/
|
||||||
|
# subtitle 會先顯示 source , 再顯示 sub 的內容
|
||||||
|
source: 3
|
||||||
|
# 如果關閉打字效果,subtitle 只會顯示 sub 的第一行文字
|
||||||
|
sub:
|
||||||
|
|
||||||
|
# Loading Animation (加載動畫)
|
||||||
|
preloader:
|
||||||
|
enable: false
|
||||||
|
# source
|
||||||
|
# 1. fullpage-loading
|
||||||
|
# 2. pace (progress bar)
|
||||||
|
source: 1
|
||||||
|
# pace theme (see https://codebyzach.github.io/pace/)
|
||||||
|
pace_css_url:
|
||||||
|
|
||||||
|
# aside (側邊欄)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
aside:
|
||||||
|
enable: true
|
||||||
|
hide: false
|
||||||
|
button: true
|
||||||
|
mobile: true # display on mobile
|
||||||
|
position: right # left or right
|
||||||
|
display:
|
||||||
|
archive: true
|
||||||
|
tag: true
|
||||||
|
category: true
|
||||||
|
card_author:
|
||||||
|
enable: true
|
||||||
|
description:
|
||||||
|
button:
|
||||||
|
enable: false
|
||||||
|
icon: fab fa-github
|
||||||
|
text: Follow Me
|
||||||
|
link: https://github.com/jkftyb
|
||||||
|
card_announcement:
|
||||||
|
enable: true
|
||||||
|
content: 自由:畅所欲言<br>分享:共享精神<br>如果喜欢就点个赞吧!谢谢诸位
|
||||||
|
card_recent_post:
|
||||||
|
enable: true
|
||||||
|
limit: 5 # if set 0 will show all
|
||||||
|
sort: date # date or updated
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
card_categories:
|
||||||
|
enable: true
|
||||||
|
limit: 8 # if set 0 will show all
|
||||||
|
expand: none # none/true/false
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
card_tags:
|
||||||
|
enable: true
|
||||||
|
limit: 40 # if set 0 will show all
|
||||||
|
color: false
|
||||||
|
orderby: random # Order of tags, random/name/length
|
||||||
|
order: 1 # Sort of order. 1, asc for ascending; -1, desc for descending
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
card_archives:
|
||||||
|
enable: true
|
||||||
|
type: monthly # yearly or monthly
|
||||||
|
format: MMMM YYYY # eg: YYYY年MM月
|
||||||
|
order: -1 # Sort of order. 1, asc for ascending; -1, desc for descending
|
||||||
|
limit: 8 # if set 0 will show all
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
card_webinfo:
|
||||||
|
enable: true
|
||||||
|
post_count: true
|
||||||
|
last_push_date: true
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
|
||||||
|
# busuanzi count for PV / UV in site
|
||||||
|
# 訪問人數
|
||||||
|
busuanzi:
|
||||||
|
site_uv: true
|
||||||
|
site_pv: true
|
||||||
|
page_pv: true
|
||||||
|
|
||||||
|
# Time difference between publish date and now (網頁運行時間)
|
||||||
|
# Formal: Month/Day/Year Time or Year/Month/Day Time
|
||||||
|
runtimeshow:
|
||||||
|
enable: true
|
||||||
|
publish_date: 6/7/2011 00:00:00
|
||||||
|
|
||||||
|
# Aside widget - Newest Comments
|
||||||
|
newest_comments:
|
||||||
|
enable: true
|
||||||
|
sort_order: # Don't modify the setting unless you know how it works
|
||||||
|
limit: 6
|
||||||
|
storage: 10 # unit: mins, save data to localStorage
|
||||||
|
avatar: true
|
||||||
|
|
||||||
|
# Bottom right button (右下角按鈕)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Conversion between Traditional and Simplified Chinese (簡繁轉換)
|
||||||
|
translate:
|
||||||
|
enable: true
|
||||||
|
# The text of a button
|
||||||
|
default: 繁
|
||||||
|
# the language of website (1 - Traditional Chinese/ 2 - Simplified Chinese)
|
||||||
|
defaultEncoding: 2
|
||||||
|
# Time delay
|
||||||
|
translateDelay: 0
|
||||||
|
# The text of the button when the language is Simplified Chinese
|
||||||
|
msgToTraditionalChinese: '繁'
|
||||||
|
# The text of the button when the language is Traditional Chinese
|
||||||
|
msgToSimplifiedChinese: '簡'
|
||||||
|
|
||||||
|
# Read Mode (閲讀模式)
|
||||||
|
readmode: true
|
||||||
|
|
||||||
|
# dark mode
|
||||||
|
darkmode:
|
||||||
|
enable: true
|
||||||
|
# Toggle Button to switch dark/light mode
|
||||||
|
button: true
|
||||||
|
# Switch dark/light mode automatically (自動切換 dark mode和 light mode)
|
||||||
|
# autoChangeMode: 1 Following System Settings, if the system doesn't support dark mode, it will switch dark mode between 6 pm to 6 am
|
||||||
|
# autoChangeMode: 2 Switch dark mode between 6 pm to 6 am
|
||||||
|
# autoChangeMode: false
|
||||||
|
autoChangeMode: true
|
||||||
|
|
||||||
|
# show scroll percent in scroll-to-top button
|
||||||
|
rightside_scroll_percent: false
|
||||||
|
|
||||||
|
# Don't modify the following settings unless you know how they work (非必要請不要修改 )
|
||||||
|
# Choose: readmode,translate,darkmode,hideAside,toc,chat,comment
|
||||||
|
# Don't repeat 不要重複
|
||||||
|
rightside_item_order:
|
||||||
|
enable: false
|
||||||
|
hide: # readmode,translate,darkmode,hideAside
|
||||||
|
show: # toc,chat,comment
|
||||||
|
|
||||||
|
# Lightbox (圖片大圖查看模式)
|
||||||
|
# --------------------------------------
|
||||||
|
# You can only choose one, or neither (只能選擇一個 或者 兩個都不選)
|
||||||
|
|
||||||
|
# medium-zoom
|
||||||
|
# https://github.com/francoischalifour/medium-zoom
|
||||||
|
medium_zoom: false
|
||||||
|
|
||||||
|
# fancybox
|
||||||
|
# http://fancyapps.com/fancybox/3/
|
||||||
|
fancybox: true
|
||||||
|
|
||||||
|
# Tag Plugins settings (標籤外掛)
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# mermaid
|
||||||
|
# see https://github.com/mermaid-js/mermaid
|
||||||
|
mermaid:
|
||||||
|
enable: false
|
||||||
|
# built-in themes: default/forest/dark/neutral
|
||||||
|
theme:
|
||||||
|
light: default
|
||||||
|
dark: dark
|
||||||
|
|
||||||
|
# Note (Bootstrap Callout)
|
||||||
|
note:
|
||||||
|
# Note tag style values:
|
||||||
|
# - simple bs-callout old alert style. Default.
|
||||||
|
# - modern bs-callout new (v2-v3) alert style.
|
||||||
|
# - flat flat callout style with background, like on Mozilla or StackOverflow.
|
||||||
|
# - disabled disable all CSS styles import of note tag.
|
||||||
|
style: flat
|
||||||
|
icons: true
|
||||||
|
border_radius: 3
|
||||||
|
# Offset lighter of background in % for modern and flat styles (modern: -12 | 12; flat: -18 | 6).
|
||||||
|
# Offset also applied to label tag variables. This option can work with disabled note tag.
|
||||||
|
light_bg_offset: 0
|
||||||
|
|
||||||
|
# other
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# Pjax
|
||||||
|
# It may contain bugs and unstable, give feedback when you find the bugs.
|
||||||
|
# https://github.com/MoOx/pjax
|
||||||
|
pjax:
|
||||||
|
enable: true
|
||||||
|
exclude:
|
||||||
|
# - xxxx
|
||||||
|
# - xxxx
|
||||||
|
|
||||||
|
# Inject the css and script (aplayer/meting)
|
||||||
|
aplayerInject:
|
||||||
|
enable: true
|
||||||
|
per_page: true
|
||||||
|
|
||||||
|
# Snackbar (Toast Notification 彈窗)
|
||||||
|
# https://github.com/polonel/SnackBar
|
||||||
|
# position 彈窗位置
|
||||||
|
# 可選 top-left / top-center / top-right / bottom-left / bottom-center / bottom-right
|
||||||
|
snackbar:
|
||||||
|
enable: false
|
||||||
|
position: bottom-left
|
||||||
|
bg_light: '#49b1f5' # The background color of Toast Notification in light mode
|
||||||
|
bg_dark: '#1f1f1f' # The background color of Toast Notification in dark mode
|
||||||
|
|
||||||
|
# https://instant.page/
|
||||||
|
# prefetch (預加載)
|
||||||
|
instantpage: false
|
||||||
|
|
||||||
|
# https://github.com/vinta/pangu.js
|
||||||
|
# Insert a space between Chinese character and English character (中英文之間添加空格)
|
||||||
|
pangu:
|
||||||
|
enable: false
|
||||||
|
field: site # site/post
|
||||||
|
|
||||||
|
# Lazyload (圖片懶加載)
|
||||||
|
# https://github.com/verlok/vanilla-lazyload
|
||||||
|
lazyload:
|
||||||
|
enable: false
|
||||||
|
field: site # site/post
|
||||||
|
placeholder:
|
||||||
|
blur: false
|
||||||
|
|
||||||
|
# PWA
|
||||||
|
# See https://github.com/JLHwung/hexo-offline
|
||||||
|
# ---------------
|
||||||
|
pwa:
|
||||||
|
enable: false
|
||||||
|
manifest: /pwa/manifest.json
|
||||||
|
apple_touch_icon: /pwa/apple-touch-icon.png
|
||||||
|
favicon_32_32: /pwa/32.png
|
||||||
|
favicon_16_16: /pwa/16.png
|
||||||
|
mask_icon: /pwa/safari-pinned-tab.svg
|
||||||
|
|
||||||
|
# Open graph meta tags
|
||||||
|
# https://developers.facebook.com/docs/sharing/webmasters/
|
||||||
|
Open_Graph_meta:
|
||||||
|
enable: true
|
||||||
|
option:
|
||||||
|
# twitter_card:
|
||||||
|
# twitter_image:
|
||||||
|
# twitter_id:
|
||||||
|
# twitter_site:
|
||||||
|
# google_plus:
|
||||||
|
# fb_admins:
|
||||||
|
# fb_app_id:
|
||||||
|
|
||||||
|
# Add the vendor prefixes to ensure compatibility
|
||||||
|
css_prefix: true
|
||||||
|
|
||||||
|
# Inject
|
||||||
|
# Insert the code to head (before '</head>' tag) and the bottom (before '</body>' tag)
|
||||||
|
# 插入代码到头部 </head> 之前 和 底部 </body> 之前
|
||||||
|
inject:
|
||||||
|
head:
|
||||||
|
# - <link rel="stylesheet" href="/xxx.css">
|
||||||
|
bottom:
|
||||||
|
- <div class="aplayer no-destroy" data-id="7815533424" data-server="netease" data-type="playlist" data-fixed="true" data-autoplay="true"> </div>
|
||||||
|
- <script>var meting_api='https://meting.jkjoy.cn/api?server=:server&type=:type&id=:id&auth=:auth&r=:r';</script>
|
||||||
|
|
||||||
|
# CDN
|
||||||
|
# Don't modify the following settings unless you know how they work
|
||||||
|
# 非必要請不要修改
|
||||||
|
CDN:
|
||||||
|
# The CDN provider of internal scripts (主題內部 js 的 cdn 配置)
|
||||||
|
# option: local/jsdelivr/unpkg/cdnjs/custom
|
||||||
|
# Dev version can only choose. ( dev版的主題只能設置為 local )
|
||||||
|
internal_provider: local
|
||||||
|
|
||||||
|
# The CDN provider of third party scripts (第三方 js 的 cdn 配置)
|
||||||
|
# option: local/jsdelivr/unpkg/cdnjs/custom
|
||||||
|
# when set it to local, you need to install hexo-butterfly-extjs
|
||||||
|
third_party_provider: jsdelivr
|
||||||
|
|
||||||
|
# Add version number to CDN, true or false
|
||||||
|
version: false
|
||||||
|
|
||||||
|
# Custom format
|
||||||
|
# For example: https://cdn.staticfile.org/${cdnjs_name}/${version}/${min_cdnjs_file}
|
||||||
|
custom_format:
|
||||||
|
|
||||||
|
option:
|
||||||
|
# main_css:
|
||||||
|
# main:
|
||||||
|
# utils:
|
||||||
|
# translate:
|
||||||
|
# local_search:
|
||||||
|
# algolia_js:
|
||||||
|
# algolia_search_v4:
|
||||||
|
# instantsearch_v4:
|
||||||
|
# docsearch_js:
|
||||||
|
# docsearch_css:
|
||||||
|
# pjax:
|
||||||
|
# gitalk:
|
||||||
|
# gitalk_css:
|
||||||
|
# blueimp_md5:
|
||||||
|
# valine:
|
||||||
|
# disqusjs:
|
||||||
|
# disqusjs_css:
|
||||||
|
# twikoo:
|
||||||
|
# waline_js:
|
||||||
|
# waline_css:
|
||||||
|
# sharejs:
|
||||||
|
# sharejs_css:
|
||||||
|
# mathjax:
|
||||||
|
# katex:
|
||||||
|
# katex_copytex:
|
||||||
|
# mermaid:
|
||||||
|
# canvas_ribbon:
|
||||||
|
# canvas_fluttering_ribbon:
|
||||||
|
# canvas_nest:
|
||||||
|
# lazyload:
|
||||||
|
# instantpage:
|
||||||
|
# typed:
|
||||||
|
# pangu:
|
||||||
|
# fancybox_css_v4:
|
||||||
|
# fancybox_v4:
|
||||||
|
# medium_zoom:
|
||||||
|
# snackbar_css:
|
||||||
|
# snackbar:
|
||||||
|
# activate_power_mode:
|
||||||
|
# fireworks:
|
||||||
|
# click_heart:
|
||||||
|
# ClickShowText:
|
||||||
|
# fontawesomeV6:
|
||||||
|
# flickr_justified_gallery_js:
|
||||||
|
# flickr_justified_gallery_css:
|
||||||
|
# aplayer_css:
|
||||||
|
# aplayer_js:
|
||||||
|
# meting_js:
|
||||||
|
# prismjs_js:
|
||||||
|
# prismjs_lineNumber_js:
|
||||||
|
# prismjs_autoloader:
|
||||||
|
# artalk_js:
|
||||||
|
# artalk_css:
|
||||||
|
# busuanzi:
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,172 @@
|
||||||
|
# Hexo Configuration
|
||||||
|
## Docs: https://hexo.io/docs/configuration.html
|
||||||
|
## Source: https://github.com/hexojs/hexo/
|
||||||
|
|
||||||
|
# Site
|
||||||
|
title: 提剑追梦
|
||||||
|
subtitle: 一个分享自己生活的博客
|
||||||
|
description: 曾梦想仗剑走天涯;因太胖放弃原计划.
|
||||||
|
keywords: DIY,黑苹果,分享,自由
|
||||||
|
author: 浪子
|
||||||
|
language: zh-CN
|
||||||
|
timezone: ''
|
||||||
|
|
||||||
|
# URL
|
||||||
|
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
|
||||||
|
url: https://jkjoy.cn
|
||||||
|
permalink: :year/:abbrlink.html
|
||||||
|
permalink_defaults:
|
||||||
|
pretty_urls:
|
||||||
|
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
|
||||||
|
trailing_html: true # Set to false to remove trailing '.html' from permalinks
|
||||||
|
|
||||||
|
# Directory
|
||||||
|
source_dir: source
|
||||||
|
public_dir: public
|
||||||
|
tag_dir: tags
|
||||||
|
archive_dir: archives
|
||||||
|
category_dir: categories
|
||||||
|
code_dir: downloads/code
|
||||||
|
i18n_dir: :lang
|
||||||
|
skip_render:
|
||||||
|
|
||||||
|
# Writing
|
||||||
|
new_post_name: :title.md # File name of new posts
|
||||||
|
default_layout: post
|
||||||
|
titlecase: false # Transform title into titlecase
|
||||||
|
external_link:
|
||||||
|
enable: true # Open external links in new tab
|
||||||
|
field: site # Apply to the whole site
|
||||||
|
exclude: ''
|
||||||
|
filename_case: 0
|
||||||
|
render_drafts: false
|
||||||
|
post_asset_folder: false
|
||||||
|
relative_link: false
|
||||||
|
future: true
|
||||||
|
highlight:
|
||||||
|
enable: true
|
||||||
|
line_number: true
|
||||||
|
auto_detect: false
|
||||||
|
tab_replace: ''
|
||||||
|
wrap: true
|
||||||
|
hljs: false
|
||||||
|
prismjs:
|
||||||
|
enable: false
|
||||||
|
preprocess: true
|
||||||
|
line_number: true
|
||||||
|
tab_replace: ''
|
||||||
|
|
||||||
|
# Home page setting
|
||||||
|
# path: Root path for your blogs index page. (default = '')
|
||||||
|
# per_page: Posts displayed per page. (0 = disable pagination)
|
||||||
|
# order_by: Posts order. (Order by date descending by default)
|
||||||
|
index_generator:
|
||||||
|
path: ''
|
||||||
|
per_page: 10
|
||||||
|
order_by: -date
|
||||||
|
|
||||||
|
# Category & Tag
|
||||||
|
default_category: share
|
||||||
|
category_map:
|
||||||
|
tag_map:
|
||||||
|
|
||||||
|
# Metadata elements
|
||||||
|
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
|
||||||
|
meta_generator: true
|
||||||
|
|
||||||
|
# Date / Time format
|
||||||
|
## Hexo uses Moment.js to parse and display date
|
||||||
|
## You can customize the date format as defined in
|
||||||
|
## http://momentjs.com/docs/#/displaying/format/
|
||||||
|
date_format: YYYY-MM-DD
|
||||||
|
time_format: HH:mm:ss
|
||||||
|
## updated_option supports 'mtime', 'date', 'empty'
|
||||||
|
updated_option: 'mtime'
|
||||||
|
|
||||||
|
# Pagination
|
||||||
|
## Set per_page to 0 to disable pagination
|
||||||
|
per_page: 10
|
||||||
|
pagination_dir: page
|
||||||
|
|
||||||
|
# Include / Exclude file(s)
|
||||||
|
## include:/exclude: options only apply to the 'source/' folder
|
||||||
|
include:
|
||||||
|
exclude:
|
||||||
|
ignore:
|
||||||
|
|
||||||
|
# Extensions
|
||||||
|
## Plugins: https://hexo.io/plugins/
|
||||||
|
## Themes: https://hexo.io/themes/
|
||||||
|
#theme: butterfly
|
||||||
|
#theme: Klise
|
||||||
|
theme: fluid
|
||||||
|
## aplayer
|
||||||
|
aplayer:
|
||||||
|
asset_inject: false
|
||||||
|
meting: true
|
||||||
|
# Deployment
|
||||||
|
## Docs: https://hexo.io/docs/one-command-deployment
|
||||||
|
deploy:
|
||||||
|
# - type: cos-cdn
|
||||||
|
# cloud: tencent
|
||||||
|
# secretId: AKIDkX0rmpIn18BVobSmP9HUcVKE3rRU3BGP
|
||||||
|
# secretKey: CNL1saZZPE1eIJpNRpyc9xURXUrZWZD7
|
||||||
|
# bucket: blog-1251893119
|
||||||
|
# region: ap-shanghai
|
||||||
|
- type: git
|
||||||
|
repo:
|
||||||
|
github: https://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@github.com/jkjoy/blog2.git
|
||||||
|
# - type: sftp
|
||||||
|
# host: blog.jkjoy.cn
|
||||||
|
# user: root
|
||||||
|
# pass: l1987615L.
|
||||||
|
# remotePath: /www/wwwroot/blog.jkjoy.cn
|
||||||
|
# port: 22
|
||||||
|
#privateKey: [path/to/privateKey]
|
||||||
|
#passphrase: [passphrase]
|
||||||
|
#agent: [path/to/agent/socket]
|
||||||
|
# 停用FTP
|
||||||
|
- type: ftpsync
|
||||||
|
host: 103.51.147.162
|
||||||
|
port: 21
|
||||||
|
remote: /
|
||||||
|
user: dacc20dd
|
||||||
|
password: LhMBJAfOjyvp8FUR
|
||||||
|
ignore: false
|
||||||
|
passive: true
|
||||||
|
# verbose: false
|
||||||
|
## 地图
|
||||||
|
baidusitemap:
|
||||||
|
path: baidusitemap.xml
|
||||||
|
feed:
|
||||||
|
enable: true
|
||||||
|
type: atom
|
||||||
|
path: atom.xml
|
||||||
|
limit: 20
|
||||||
|
hub:
|
||||||
|
content:
|
||||||
|
content_limit: 140
|
||||||
|
content_limit_delim: ' '
|
||||||
|
order_by: -date
|
||||||
|
icon: icon.png
|
||||||
|
autodiscovery: true
|
||||||
|
template:
|
||||||
|
is_need_proxy: false
|
||||||
|
proxy_url: http://localhost:50018
|
||||||
|
baidu_appid: ''
|
||||||
|
baidu_appkey: ''
|
||||||
|
rewrite: false
|
||||||
|
# abbrlink config
|
||||||
|
abbrlink:
|
||||||
|
alg: crc32 #support crc16(default) and crc32
|
||||||
|
rep: hex #support dec(default) and hex
|
||||||
|
drafts: false #(true)Process draft,(false)Do not process draft. false(default)
|
||||||
|
# Generate categories from directory-tree
|
||||||
|
# depth: the max_depth of directory-tree you want to generate, should > 0
|
||||||
|
auto_category:
|
||||||
|
enable: true #true(default)
|
||||||
|
depth: #3(default)
|
||||||
|
over_write: false
|
||||||
|
auto_title: false #enable auto title, it can auto fill the title by path
|
||||||
|
auto_date: false #enable auto date, it can auto fill the date by time today
|
||||||
|
force: false #enable force mode,in this mode, the plugin will ignore the cache, and calc the abbrlink for every post even it already had abbrlink. This only updates abbrlink rather than other front variables.
|
|
@ -0,0 +1,18 @@
|
||||||
|
// offline config passed to workbox-build.
|
||||||
|
module.exports = {
|
||||||
|
globPatterns: ['**/*.{js,html,css,png,jpg,gif,svg,webp,eot,ttf,woff,woff2}'],
|
||||||
|
// 靜態文件合集,如果你的站點使用了例如 webp 格式的文件,請將文件類型添加進去。
|
||||||
|
globDirectory: 'public',
|
||||||
|
swDest: 'public/service-worker.js',
|
||||||
|
maximumFileSizeToCacheInBytes: 10485760, // 緩存的最大文件大小,以字節為單位。
|
||||||
|
skipWaiting: true,
|
||||||
|
clientsClaim: true,
|
||||||
|
runtimeCaching: [ // 如果你需要加載 CDN 資源,請配置該選項,如果沒有,可以不配置。
|
||||||
|
// CDNs - should be CacheFirst, since they should be used specific versions so should not change
|
||||||
|
{
|
||||||
|
urlPattern: /^https:\/\/blog\.loliko\.cn\/.*/, // 可替換成你的 URL
|
||||||
|
handler: 'CacheFirst'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../JSONStream/bin.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../JSONStream/bin.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\JSONStream\bin.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../JSONStream/bin.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../JSONStream/bin.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../JSONStream/bin.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../JSONStream/bin.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../acorn/bin/acorn" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\acorn\bin\acorn" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../atob/bin/atob.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../atob/bin/atob.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\atob\bin\atob.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../atob/bin/atob.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../atob/bin/atob.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../atob/bin/atob.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../atob/bin/atob.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../browserslist/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../browserslist/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../update-browserslist-db/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../update-browserslist-db/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\update-browserslist-db\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\browserslist\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../browserslist/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../browserslist/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../hexo-bunyan/bin/bunyan" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../hexo-bunyan/bin/bunyan" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\hexo-bunyan\bin\bunyan" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../hexo-bunyan/bin/bunyan" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../hexo-bunyan/bin/bunyan" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../hexo-bunyan/bin/bunyan" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../hexo-bunyan/bin/bunyan" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../color-support/bin.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../color-support/bin.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\color-support\bin.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../color-support/bin.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../color-support/bin.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../color-support/bin.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../color-support/bin.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../ejs/bin/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../ejs/bin/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\ejs\bin\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../ejs/bin/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../ejs/bin/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../ejs/bin/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../ejs/bin/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../escodegen/bin/escodegen.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../escodegen/bin/escodegen.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\escodegen\bin\escodegen.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../escodegen/bin/escodegen.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../escodegen/bin/escodegen.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../escodegen/bin/escodegen.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../escodegen/bin/escodegen.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../escodegen/bin/esgenerate.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../escodegen/bin/esgenerate.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\escodegen\bin\esgenerate.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../esprima/bin/esparse.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esprima\bin\esparse.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../esprima/bin/esparse.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../esprima/bin/esparse.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../esprima/bin/esvalidate.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esprima\bin\esvalidate.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../fast-xml-parser/src/cli/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../fast-xml-parser/src/cli/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\fast-xml-parser\src\cli\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../fast-xml-parser/src/cli/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../fast-xml-parser/src/cli/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../fast-xml-parser/src/cli/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../fast-xml-parser/src/cli/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../hexo/bin/hexo" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../hexo/bin/hexo" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\hexo\bin\hexo" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../hexo/bin/hexo" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../hexo/bin/hexo" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../hexo/bin/hexo" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../hexo/bin/hexo" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../in-publish/in-install.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../in-publish/in-install.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\in-publish\in-install.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../in-publish/in-install.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../in-publish/in-install.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../in-publish/in-install.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../in-publish/in-install.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../in-publish/in-publish.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../in-publish/in-publish.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\in-publish\in-publish.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../in-publish/in-publish.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../in-publish/in-publish.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../in-publish/in-publish.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../in-publish/in-publish.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../is-docker/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../is-docker/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\is-docker\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../is-docker/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../is-docker/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../is-docker/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../is-docker/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../jake/bin/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../jake/bin/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\jake\bin\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../jake/bin/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../jake/bin/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../jake/bin/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../jake/bin/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\js-yaml\bin\js-yaml.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../jsesc/bin/jsesc" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../jsesc/bin/jsesc" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\jsesc\bin\jsesc" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../json5/lib/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../json5/lib/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\json5\lib\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../marked/bin/marked.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../marked/bin/marked.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\marked\bin\marked.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../marked/bin/marked.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../marked/bin/marked.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../marked/bin/marked.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../marked/bin/marked.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../markdown/bin/md2html.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../markdown/bin/md2html.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\markdown\bin\md2html.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../markdown/bin/md2html.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../markdown/bin/md2html.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../markdown/bin/md2html.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../markdown/bin/md2html.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../mime/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../mime/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nanoid\bin\nanoid.cjs" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../ncp/bin/ncp" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../ncp/bin/ncp" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\ncp\bin\ncp" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../ncp/bin/ncp" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../ncp/bin/ncp" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../ncp/bin/ncp" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../ncp/bin/ncp" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../node-gyp/bin/node-gyp.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\node-gyp\bin\node-gyp.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../node-sass/bin/node-sass" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../node-sass/bin/node-sass" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\node-sass\bin\node-sass" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../node-sass/bin/node-sass" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../node-sass/bin/node-sass" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../node-sass/bin/node-sass" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../node-sass/bin/node-sass" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../which/bin/node-which" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../which/bin/node-which" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\which\bin\node-which" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../which/bin/node-which" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../which/bin/node-which" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../which/bin/node-which" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../which/bin/node-which" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../nopt/bin/nopt.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../nopt/bin/nopt.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nopt\bin\nopt.js" %*
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue