Skip to content

Commit

Permalink
v3.6.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Aug 3, 2024
1 parent bb9f32c commit bad4b86
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3core",
"version": "3.6.12",
"version": "3.6.13",
"description": "Japanese Programming Language Nadesiko v3 core",
"main": "index.mjs",
"type": "module",
Expand Down
8 changes: 4 additions & 4 deletions core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */

/* Modules */
"module": "NodeNext", /* Specify what module code is generated. */
"module": "NodeNext", /* Specify what module code is generated. */
// "rootDir": "./", /* Specify the root folder within your source files. */
"moduleResolution": "NodeNext", /* Specify how TypeScript looks up a file from a given module specifier. */
"baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
"moduleResolution": "NodeNext", /* Specify how TypeScript looks up a file from a given module specifier. */
"baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
"typeRoots": ["src/@types", "node_modules/@types"], /* Specify multiple folders that act like `./node_modules/@types`. */
"types": ["node", "mocha"], /* Specify type package names to be included without being referenced in a source file. */
"types": ["node"], /* Specify type package names to be included without being referenced in a source file. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
// "resolveJsonModule": true, /* Enable importing .json files */
// "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3",
"version": "3.6.12",
"version": "3.6.13",
"description": "Japanese Programming Language",
"type": "module",
"main": "src/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/nako_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.6.12',
version: '3.6.13',
major: 3,
minor: 6,
patch: 12
patch: 13
}
export default nakoVersion

0 comments on commit bad4b86

Please sign in to comment.