nadesiko3 3.4.3 → 3.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/batch/command.txt +323 -316
- package/batch/command_nakopad.txt +15 -8
- package/core/README.md +8 -11
- package/core/package-lock.json +5463 -0
- package/core/package.json +1 -1
- package/core/src/nako_core_version.mjs +2 -2
- package/core/src/nako_core_version.mts +2 -2
- package/core/src/nako_gen.mjs +7 -4
- package/core/src/nako_gen.mts +7 -4
- package/core/src/plugin_system.mjs +20 -29
- package/core/src/plugin_system.mts +22 -27
- package/doc/SETUP.md +1 -3
- package/doc/textlint.md +5 -5
- package/package.json +6 -8
- package/release/_hash.txt +52 -52
- package/release/_script-tags.txt +14 -14
- package/release/command.json +1 -1
- package/release/command.json.js +1 -1
- package/release/command_cnako3.json +1 -1
- package/release/command_list.json +1 -1
- package/release/editor.js +2 -1
- package/release/editor.js.map +1 -0
- package/release/nako_gen_async.js +2 -1
- package/release/nako_gen_async.js.LICENSE.txt +6 -0
- package/release/nako_gen_async.js.map +1 -0
- package/release/plugin_caniuse.js +2 -1
- package/release/plugin_caniuse.js.LICENSE.txt +4 -0
- package/release/plugin_caniuse.js.map +1 -0
- package/release/plugin_datetime.js +2 -1
- package/release/plugin_datetime.js.LICENSE.txt +6 -0
- package/release/plugin_datetime.js.map +1 -0
- package/release/plugin_kansuji.js +2 -1
- package/release/plugin_kansuji.js.map +1 -0
- package/release/plugin_markup.js +2 -1
- package/release/plugin_markup.js.LICENSE.txt +4 -0
- package/release/plugin_markup.js.map +1 -0
- package/release/plugin_turtle.js +2 -1
- package/release/plugin_turtle.js.LICENSE.txt +6 -0
- package/release/plugin_turtle.js.map +1 -0
- package/release/plugin_webworker.js +2 -1
- package/release/plugin_webworker.js.map +1 -0
- package/release/plugin_weykturtle3d.js +2 -1
- package/release/plugin_weykturtle3d.js.map +1 -0
- package/release/stats.json +1 -1
- package/release/version.js +2 -1
- package/release/version.js.map +1 -0
- package/release/wnako3.js +2 -1
- package/release/wnako3.js.map +1 -0
- package/release/wnako3webworker.js +2 -1
- package/release/wnako3webworker.js.LICENSE.txt +72 -0
- package/release/wnako3webworker.js.map +1 -0
- package/src/nako_version.mjs +2 -2
- package/src/nako_version.mts +2 -2
- package/src/plugin_browser_chart.mjs +3 -1
- package/src/plugin_browser_chart.mts +3 -1
- package/src/plugin_browser_dom_basic.mjs +11 -1
- package/src/plugin_browser_dom_basic.mts +12 -3
- package/src/plugin_browser_html.mjs +33 -16
- package/src/plugin_browser_html.mts +32 -15
- package/src/plugin_node.mjs +63 -1
- package/src/plugin_node.mts +63 -1
- package/test/node/async_test.mjs +13 -23
- package/tools/README.md +0 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
「なでしこ3」とは、日本語のプログラミング言語です。HTML5/JavaScript(TypeScript)をベースとしているので、PC/スマホ/タブレットなど、さまざまな環境で動作させることができます。日本語プログラミング言語は、読みやすく理解しやすいのが特徴で、初めてでも楽しくプログラミングを覚えることができます。また、バッチ処理や定型処理などを手軽に記述できます。
|
|
10
10
|
|
|
11
|
-
- [なでしこのWebサイト](https://nadesi.com/)
|
|
11
|
+
- [なでしこのWebサイト](https://nadesi.com/top/)
|
|
12
12
|
- [なでしこ3のGitHub Pages](https://kujirahand.github.io/nadesiko3/)
|
|
13
13
|
- [マニュアル](https://nadesi.com/v3/doc/)
|
|
14
14
|
|
|
@@ -62,7 +62,7 @@ cd nadesiko3
|
|
|
62
62
|
npm install
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
サブモジュールとして[`nadesiko3core`](https://github.com/kujirahand/nadesiko3core
|
|
65
|
+
サブモジュールとして[`nadesiko3core`](https://github.com/kujirahand/nadesiko3core)を利用するので、`--recursive` を付け忘れたら以下のコマンドを実行して、サブモジュールも取得してください。
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
68
|
# 以下のように --recursive 付け忘れた場合
|
|
@@ -74,7 +74,7 @@ git submodule update --init --recursive
|
|
|
74
74
|
|
|
75
75
|
## Ubuntuへの開発環境のセットアップ
|
|
76
76
|
|
|
77
|
-
まっさらなUbuntu22.04でなでしこ3
|
|
77
|
+
まっさらなUbuntu22.04でなでしこ3の開発環境を整える場合は以下のコマンドを実行します。
|
|
78
78
|
|
|
79
79
|
```
|
|
80
80
|
sudo apt update
|
|
@@ -124,7 +124,7 @@ npm run test:all
|
|
|
124
124
|
|
|
125
125
|
「なでしこ3」の開発は2017年に始まり、以後コツコツとバージョンアップを続けています。「誰でも簡単プログラマー」の目標を実現するために、これからも頑張ります。
|
|
126
126
|
|
|
127
|
-
- (2022-05-19) v3.3.18でJavaScriptからTypeScript
|
|
127
|
+
- (2022-05-19) v3.3.18でJavaScriptからTypeScriptへ変更。言語コアを別リポジトリに移動
|
|
128
128
|
- (2022-04-20) v3.3.2を公開(モジュール構造をCommonJS→ESModuleへ変更/asyncFnの実装)
|
|
129
129
|
- (2021-04-09) v3.2.1を公開
|
|
130
130
|
- (2020-04-24) v3.1.2を公開
|
|
@@ -147,7 +147,7 @@ npm run test:all
|
|
|
147
147
|
- [nadesiko3-office](https://github.com/kujirahand/nadesiko3-office) --- Excelなど
|
|
148
148
|
- [nadesiko3-sqlite3](https://github.com/kujirahand/nadesiko3-sqlite3/) --- SQLite3
|
|
149
149
|
- [nadesiko3-tools](https://github.com/kujirahand/nadesiko3-tools) --- 便利ツール
|
|
150
|
-
- [nadesiko3-mecab](https://github.com/kujirahand/nadesiko3-mecab/) --- 形態素解析(
|
|
150
|
+
- [nadesiko3-mecab](https://github.com/kujirahand/nadesiko3-mecab/) --- 形態素解析(MeCab)
|
|
151
151
|
- [nadesiko3-htmlparser](https://github.com/kujirahand/nadesiko3-htmlparser) --- スクレイピング
|
|
152
152
|
- [nadesiko3-ml](https://github.com/kujirahand/nadesiko3-ml/) --- 機械学習
|
|
153
153
|
- [nadesiko3-odbc](https://github.com/kujirahand/nadesiko3-odbc) --- データベース(ODBC)
|