@mochabug/adaptkit 1.0.0-rc.14 → 1.0.0-rc.16
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/bin/index.js +3 -4
- package/bin/index.js.map +2 -2
- package/bin/init.d.ts.map +1 -1
- package/package.json +2 -2
- package/assets/license.md +0 -15
package/bin/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// <define:__PACKAGE_JSON__>
|
|
4
|
-
var define_PACKAGE_JSON_default = { name: "@mochabug/adaptkit", version: "1.0.0-rc.
|
|
4
|
+
var define_PACKAGE_JSON_default = { name: "@mochabug/adaptkit", version: "1.0.0-rc.16" };
|
|
5
5
|
|
|
6
6
|
// node_modules/@bufbuild/protobuf/dist/esm/is-message.js
|
|
7
7
|
function isMessage(arg, schema) {
|
|
@@ -5042,7 +5042,6 @@ async function init(dir) {
|
|
|
5042
5042
|
frontendLib
|
|
5043
5043
|
);
|
|
5044
5044
|
writeFile(path3.join(cwd, "README.md"), readAsset("readme.md"));
|
|
5045
|
-
writeFile(path3.join(cwd, "LICENSE.md"), readAsset("license.md"));
|
|
5046
5045
|
writeFile(path3.join(cwd, "tsconfig.json"), readAsset("tsconf.json"));
|
|
5047
5046
|
writeFile(path3.join(cwd, "build.js"), readAsset("build.js"));
|
|
5048
5047
|
const manifest = {
|
|
@@ -5414,13 +5413,13 @@ async function sendPlugin(opts) {
|
|
|
5414
5413
|
assetsPrefix: opts.assetsFolder,
|
|
5415
5414
|
manifest: opts.manifest,
|
|
5416
5415
|
executorPath: opts.executorPath,
|
|
5417
|
-
configuratorPath: opts.configuratorPath
|
|
5416
|
+
configuratorPath: opts.configuratorPath,
|
|
5417
|
+
copySystemSettings: true
|
|
5418
5418
|
})
|
|
5419
5419
|
}
|
|
5420
5420
|
});
|
|
5421
5421
|
const files = [
|
|
5422
5422
|
createFileRequest("README.md"),
|
|
5423
|
-
createFileRequest("LICENSE.md"),
|
|
5424
5423
|
createFileRequest(opts.executorPath),
|
|
5425
5424
|
createFileRequest(opts.configuratorPath),
|
|
5426
5425
|
createFileRequest(opts.manifest.logo, [80, 80])
|