nadesiko3 3.3.76 → 3.3.78
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/batch/command.txt +8 -6
- package/batch/command_nakopad.txt +3 -1
- package/core/package.json +3 -3
- package/core/src/nako3.mjs +6 -6
- package/core/src/nako3.mts +6 -6
- package/core/src/nako_core_version.mjs +2 -2
- package/core/src/nako_core_version.mts +2 -2
- package/core/src/nako_gen.mjs +11 -1
- package/core/src/nako_gen.mts +7 -1
- package/core/src/plugin_system.mjs +19 -2
- package/core/src/plugin_system.mts +20 -3
- package/core/test/array_test.mjs +3 -0
- package/package.json +1 -1
- package/release/_hash.txt +28 -28
- 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 +1 -1
- package/release/nako_gen_async.js +1 -1
- package/release/plugin_markup.js +1 -1
- package/release/stats.json +1 -1
- package/release/version.js +1 -1
- package/release/wnako3.js +1 -1
- package/release/wnako3.js.LICENSE.txt +1 -1
- package/release/wnako3webworker.js +1 -1
- package/src/nako_version.mjs +2 -2
- package/src/nako_version.mts +2 -2
- package/test/node/plugin_test.mjs +1 -2
- package/test/selenium/requirements.txt +2 -2
package/src/nako_version.mjs
CHANGED
package/src/nako_version.mts
CHANGED
|
@@ -14,9 +14,8 @@ describe('plugin_test', () => {
|
|
|
14
14
|
const scope1 = path.join(__dirname, 'scope1.nako3')
|
|
15
15
|
const scope2 = path.join(__dirname, 'scope2.nako3')
|
|
16
16
|
// nako.logger.addListener('trace', ({ browserConsole }) => { console.log(...browserConsole) })
|
|
17
|
-
nako.silent = true
|
|
18
17
|
const cmp = async (/** @type {string} */ code, /** @type {string} */ res) => {
|
|
19
|
-
nako.
|
|
18
|
+
nako.getLogger().debug('code=' + code)
|
|
20
19
|
const ret = await nako.runAsync(code, 'main.nako3')
|
|
21
20
|
if (ret.log !== res) {
|
|
22
21
|
console.log('[ERROR]', ret.log, '!=', res)
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
selenium
|
|
2
|
-
webdriver-manager
|
|
1
|
+
selenium>=4.5
|
|
2
|
+
webdriver-manager>=3.8.4
|
|
3
3
|
flask
|