nadesiko3 3.4.4 → 3.4.9
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 -1
- package/batch/command.txt +312 -307
- package/batch/command_nakopad.txt +13 -8
- package/core/README.md +8 -11
- package/core/core.code-workspace +8 -0
- package/core/deno/plugin_snako_deno.ts +109 -0
- package/core/deno/snako.ts +116 -0
- package/core/deno_build_ver.sh +4 -0
- package/core/deno_hello.sh +7 -0
- package/core/index.mjs +8 -2
- package/core/index.mts +8 -2
- package/core/package-lock.json +3364 -0
- package/core/package.json +3 -3
- package/core/sample/hello2.nako3 +2 -0
- package/core/src/nako_core_version.mjs +2 -2
- package/core/src/nako_core_version.mts +2 -2
- package/core/src/nako_gen.mjs +10 -6
- package/core/src/nako_gen.mts +10 -6
- package/core/src/nako_parser3.mjs +56 -36
- package/core/src/nako_parser3.mts +55 -39
- package/core/src/nako_parser_base.mjs +1 -0
- package/core/src/nako_parser_base.mts +2 -0
- package/core/src/nako_types.mts +4 -3
- package/core/src/plugin_system.mjs +22 -30
- package/core/src/plugin_system.mts +24 -28
- package/core/test/func_call.mjs +5 -2
- package/core/test/plugin_system_test.mjs +6 -0
- package/core/tsconfig.json +3 -2
- package/doc/SETUP.md +8 -7
- package/doc/about.md +1 -2
- package/doc/files.md +0 -1
- package/doc/plugins.md +0 -1
- package/doc/release.md +2 -2
- package/doc/textlint.md +4 -1
- 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_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
|
@@ -122,7 +122,8 @@ npm run test:all
|
|
|
122
122
|
|
|
123
123
|
## なでしこの開発履歴
|
|
124
124
|
|
|
125
|
-
「なでしこ3」の開発は2017
|
|
125
|
+
「なでしこ3」の開発は2017年に始まり、以後コツコツとバージョンアップを続けています。
|
|
126
|
+
「誰でも簡単プログラマー」の目標を実現するために、これからも頑張ります。
|
|
126
127
|
|
|
127
128
|
- (2022-05-19) v3.3.18でJavaScriptからTypeScriptへ変更。言語コアを別リポジトリに移動
|
|
128
129
|
- (2022-04-20) v3.3.2を公開(モジュール構造をCommonJS→ESModuleへ変更/asyncFnの実装)
|
|
@@ -158,6 +159,9 @@ npm run test:all
|
|
|
158
159
|
- [nadesiko3webkit - なでしこ3軽量配布キット(webkit版)](https://github.com/kujirahand/nadesiko3webkit)
|
|
159
160
|
- [nadesiko3electron - なでしこ3フル配布キット(electron版)](https://github.com/kujirahand/nadesiko3electron)
|
|
160
161
|
- [nadesiko3win32 - なでしこ3(コンソール版)のWindows配布パッケージ](https://github.com/kujirahand/nadesiko3win32/releases)
|
|
162
|
+
- サーバーサイドJavaScriptエンジン用の実装
|
|
163
|
+
- [nadesiko3(Node.js)](https://github.com/kujirahand/nadesiko3)
|
|
164
|
+
- [nadesiko3(Deno)](https://github.com/kujirahand/nadesiko3deno)
|
|
161
165
|
- 実験的に別言語で実装したなでしこ3
|
|
162
166
|
- [nadesiko3php - なでしこ3PHP](https://github.com/kujirahand/nadesiko3php)
|
|
163
167
|
- [nadesiko3rust - なでしこ3Rust](https://github.com/kujirahand/nadesiko3rust)
|