qcobjects-cli 2.5.105-beta → 2.5.106-beta
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/VERSION +1 -1
- package/package.json +1 -1
- package/public/browser/index.js +2 -1
- package/public/browser/index.js.map +2 -2
- package/public/browser/org.quickcorp.qcobjects.cli.js +2 -1
- package/public/browser/org.quickcorp.qcobjects.cli.js.map +2 -2
- package/public/browser/qcobjects-cli.js +2 -1
- package/public/browser/qcobjects-cli.js.map +2 -2
- package/public/cjs/index.cjs +2 -1
- package/public/cjs/index.cjs.map +2 -2
- package/public/cjs/org.quickcorp.qcobjects.cli.cjs +2 -1
- package/public/cjs/org.quickcorp.qcobjects.cli.cjs.map +2 -2
- package/public/cjs/qcobjects-cli.cjs +2 -1
- package/public/cjs/qcobjects-cli.cjs.map +2 -2
- package/public/esm/index.mjs +2 -1
- package/public/esm/index.mjs.map +2 -2
- package/public/esm/org.quickcorp.qcobjects.cli.mjs +2 -1
- package/public/esm/org.quickcorp.qcobjects.cli.mjs.map +2 -2
- package/public/esm/qcobjects-cli.mjs +2 -1
- package/public/esm/qcobjects-cli.mjs.map +2 -2
- package/src/org.quickcorp.qcobjects.cli.ts +2 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.106-beta
|
package/package.json
CHANGED
package/public/browser/index.js
CHANGED
|
@@ -3878,7 +3878,7 @@ Enjoy!
|
|
|
3878
3878
|
}
|
|
3879
3879
|
generateServiceWorker(appName, dirPrefix = "./") {
|
|
3880
3880
|
const writeContent = /* @__PURE__ */ __name((component) => {
|
|
3881
|
-
const parsedText = component.
|
|
3881
|
+
const parsedText = component.parsedAssignmentText;
|
|
3882
3882
|
logger7.debug("Starting to write the sw file...");
|
|
3883
3883
|
fs2.writeFile(`${dirPrefix}/sw.js`, parsedText, (err) => {
|
|
3884
3884
|
if (err) {
|
|
@@ -3908,6 +3908,7 @@ Enjoy!
|
|
|
3908
3908
|
template = "";
|
|
3909
3909
|
constructor({ name, data }) {
|
|
3910
3910
|
super({ name, data });
|
|
3911
|
+
this.data = data;
|
|
3911
3912
|
}
|
|
3912
3913
|
done({ request, component }) {
|
|
3913
3914
|
super.done({ request, component });
|