@fnet/cli 0.114.0 → 0.116.0
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/dist/fnet/index.BZuqvTVt.js +1 -0
- package/dist/fnet/index.js +1 -1
- package/dist/fnode/index.B_0ZxySP.js +1 -0
- package/dist/fnode/{index.Cl6LPgIY.js → index.D3C-8oZW.js} +1 -1
- package/dist/fnode/index.D4sPJLOP.js +1 -0
- package/dist/fnode/index.DIZA_GzC.js +1 -0
- package/dist/fnode/{index.mC936qdY.js → index.DMkgR1Dh.js} +1 -1
- package/dist/fnode/index.js +1 -1
- package/dist/fnode/{index.qJ6fWMSj.js → index.uPDSav7E.js} +1 -1
- package/package.json +2 -1
- package/template/fnet/bun/src/cli/index.js.njk +1 -1
- package/template/fnet/node/package.json.njk +1 -0
- package/template/fnet/node/rollup.config.mjs.njk +144 -11
- package/template/fnet/node/src/cli/index.js.njk +322 -39
- package/template/fnode/bun/src/cli/index.js.njk +2 -2
- package/template/fnode/node/package.json.njk +10 -1
- package/template/fnode/node/rollup.config.mjs.njk +144 -11
- package/template/fnode/node/src/cli/index.js.njk +289 -46
- package/dist/fnet/index.PNP2oTpU.js +0 -1
- package/dist/fnode/index.6_yfJqit.js +0 -1
- package/dist/fnode/index.BlhtGEKB.js +0 -1
- package/dist/fnode/index.CLPC6OJN.js +0 -1
- package/template/fnet/bun/fnet/flows.yaml.njk +0 -1
- package/template/fnet/bun/fnet.yaml.njk +0 -1
- package/template/fnet/node/fnet/flows.yaml.njk +0 -1
- package/template/fnet/node/fnet.yaml.njk +0 -1
- package/template/fnet/node/rollup_config_external.njk +0 -8
- package/template/fnet/node/rollup_config_onwarn.njk +0 -9
- package/template/fnet/node/rollup_config_output_banner.njk +0 -3
- package/template/fnet/node/rollup_config_output_footer.njk +0 -5
- package/template/fnet/node/rollup_config_output_globals.njk +0 -9
- package/template/fnet/node/rollup_config_output_name.njk +0 -3
- package/template/fnet/node/rollup_config_plugins.njk +0 -90
- package/template/fnode/bun/fnode.yaml.njk +0 -1
- package/template/fnode/node/fnode.yaml.njk +0 -1
- package/template/fnode/node/rollup_config_external.njk +0 -8
- package/template/fnode/node/rollup_config_onwarn.njk +0 -9
- package/template/fnode/node/rollup_config_output_banner.njk +0 -3
- package/template/fnode/node/rollup_config_output_footer.njk +0 -5
- package/template/fnode/node/rollup_config_output_globals.njk +0 -9
- package/template/fnode/node/rollup_config_output_name.njk +0 -3
- package/template/fnode/node/rollup_config_plugins.njk +0 -90
- package/template/fnode/python/fnode.yaml.njk +0 -1
- /package/template/fnet/bun/src/default/{to.args.js.njk → input.args.js.njk} +0 -0
- /package/template/fnet/node/src/default/{to.args.js.njk → input.args.js.njk} +0 -0
- /package/template/fnet/project/.vscode/{launch.json → launch.json.njk} +0 -0
- /package/template/fnet/project/.vscode/{tasks.json → tasks.json.njk} +0 -0
- /package/template/fnode/bun/src/default/{to.args.js.njk → input.args.js.njk} +0 -0
- /package/template/fnode/node/src/default/{to.args.js.njk → input.args.js.njk} +0 -0
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
plugins: await initPlugins({
|
|
2
|
-
delete:{ targets: [path.normalize(groupDir + '{{key}}')], runOnce: DEVELOPMENT },
|
|
3
|
-
|
|
4
|
-
format:"{{ value.format }}",
|
|
5
|
-
|
|
6
|
-
{% if value.babel===true %}
|
|
7
|
-
babel:{{value.babel_options | dump | safe}},
|
|
8
|
-
{% endif %}
|
|
9
|
-
|
|
10
|
-
{% if value.replace ===true %}
|
|
11
|
-
replace:{{value.replace_options | dump | safe}},
|
|
12
|
-
{% endif %}
|
|
13
|
-
|
|
14
|
-
{% if value.browser===true %}
|
|
15
|
-
browser:true,
|
|
16
|
-
{% endif %}
|
|
17
|
-
|
|
18
|
-
{% if value.browsersync===true and atom.doc.features.browsersync_enabled===true%}
|
|
19
|
-
browsersync: {{value.browsersync_options | dump | safe}},
|
|
20
|
-
{% endif %}
|
|
21
|
-
|
|
22
|
-
{% if value.alias_enabled===true %}
|
|
23
|
-
alias:{{value.alias | dump | safe}},
|
|
24
|
-
{% endif %}
|
|
25
|
-
|
|
26
|
-
{# OK #}
|
|
27
|
-
{% if value.css %}
|
|
28
|
-
postcss:{{value.css | dump | safe}},
|
|
29
|
-
{% endif %}
|
|
30
|
-
|
|
31
|
-
{# OK #}
|
|
32
|
-
{% if value.copy %}
|
|
33
|
-
copy:{{value.copy | dump | safe}},
|
|
34
|
-
{% endif %}
|
|
35
|
-
|
|
36
|
-
{# OK #}
|
|
37
|
-
{% if value.terser%}
|
|
38
|
-
terser:{{value.terser | dump | safe}},
|
|
39
|
-
{% endif %}
|
|
40
|
-
|
|
41
|
-
{# OK #}
|
|
42
|
-
{% if value.json %}
|
|
43
|
-
json:{{value.json | dump | safe}},
|
|
44
|
-
{% endif %}
|
|
45
|
-
|
|
46
|
-
{# OK #}
|
|
47
|
-
{% if value.wasm %}
|
|
48
|
-
wasm: {{value.wasm | dump | safe}},
|
|
49
|
-
{% endif %}
|
|
50
|
-
|
|
51
|
-
{# OK #}
|
|
52
|
-
{% if value.string %}
|
|
53
|
-
string:{{value.string | dump | safe}},
|
|
54
|
-
{% endif %}
|
|
55
|
-
|
|
56
|
-
{# OK #}
|
|
57
|
-
{% if value.image %}
|
|
58
|
-
image:{{value.image | dump | safe}},
|
|
59
|
-
{% endif %}
|
|
60
|
-
|
|
61
|
-
{# OK #}
|
|
62
|
-
{% if value.analyzer %}
|
|
63
|
-
analyzer:{{value.analyzer | dump | safe}},
|
|
64
|
-
{% endif %}
|
|
65
|
-
|
|
66
|
-
{# OK #}
|
|
67
|
-
{% if value.visualizer %}
|
|
68
|
-
visualizer:{{value.visualizer | dump | safe}},
|
|
69
|
-
{% endif %}
|
|
70
|
-
|
|
71
|
-
{# OK #}
|
|
72
|
-
{% if value.polyfill %}
|
|
73
|
-
polyfill:{{value.polyfill | dump | safe}},
|
|
74
|
-
{% endif %}
|
|
75
|
-
|
|
76
|
-
{# OK #}
|
|
77
|
-
{% if value.nunjucks %}
|
|
78
|
-
nunjucks:{{value.nunjucks | dump | safe}},
|
|
79
|
-
{% endif %}
|
|
80
|
-
|
|
81
|
-
{# OK #}
|
|
82
|
-
{% if value.workbox %}
|
|
83
|
-
workbox:{{value.workbox | dump | safe}},
|
|
84
|
-
{% endif %}
|
|
85
|
-
|
|
86
|
-
{# OK #}
|
|
87
|
-
{% if value.gzip %}
|
|
88
|
-
gzip:{{value.gzip | dump | safe}},
|
|
89
|
-
{% endif %}
|
|
90
|
-
}),
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{content | safe}}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|