-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ビルドスクリプト * tsconfig * vite.config * 上記各設定を、Nagarjunaとできるだけ揃える
- Loading branch information
1 parent
b920695
commit dbd4f61
Showing
4 changed files
with
32 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"name": "harumi", | ||
"description": "Harumi (春海): Japanese-Western calendar open data and web converter", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"type": "module", | ||
"private": false, | ||
"main": "./dist/harumi.umd.cjs", | ||
"module": "./dist/harumi.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -15,12 +16,13 @@ | |
}, | ||
"files": [ | ||
"dist", | ||
"src" | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "cross-env BUILD_MODE=package tsc && vite build", | ||
"deploy": "tsc && vite build", | ||
"build": "tsc && cross-env BUILD_MODE=package vite build", | ||
"deploy": "cp public/index.html index.html && tsc && vite build", | ||
"preview": "vite preview", | ||
"test": "vitest run", | ||
"test:watch": "vitest", | ||
|
@@ -37,7 +39,7 @@ | |
"converter" | ||
], | ||
"readme": "README.md", | ||
"author": "Kohei Otsuka ([email protected])", | ||
"author": "Code for History", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/code4history/Harumi/issues" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ <h1 class="display-3"><span class="genkai">春海</span>: 年号推定フォー | |
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> | ||
<!-- デモ用スクリプト --> | ||
<script type="module" src="./harumi.demo.js"></script> | ||
<script type="module" src="./src/demo.ts"></script> | ||
<!-- Service Worker の登録 --> | ||
<script> | ||
window.addEventListener('load', function() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters