Skip to content

Commit

Permalink
Release 6.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Masquerade-Circus committed Apr 19, 2022
1 parent 02b9597 commit 57ef0d1
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 20 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
### [6.0.7](https://github.com/Masquerade-Circus/valyrian.js/compare/6.0.6...6.0.7) (2022-03-18)


### [6.0.8](https://github.com/Masquerade-Circus/valyrian.js/compare/6.0.7...6.0.8) (2022-04-19)


### Code Refactoring

* refactor build system, hooks and router plugins ([02b9597](https://github.com/Masquerade-Circus/valyrian.js/commit/02b9597971422286d680c93cdd71583c9f433155))

### [6.0.7](https://github.com/Masquerade-Circus/valyrian.js/compare/6.0.6...6.0.7) (2022-03-18)

### Bug Fixes

* **v-model:** fix v-model directive not working ([3a8e780](https://github.com/Masquerade-Circus/valyrian.js/commit/3a8e7800e9291b177889b1da37f8286234d5094b))
* **v-model:** fix v-model directive not working ([3a8e780](https://github.com/Masquerade-Circus/valyrian.js/commit/3a8e7800e9291b177889b1da37f8286234d5094b))

### [6.0.6](https://github.com/Masquerade-Circus/valyrian.js/compare/6.0.5...6.0.6) (2022-03-17)

Expand Down Expand Up @@ -453,4 +461,4 @@

### [0.0.3](https://github.com/Masquerade-Circus/valyrian.js/compare/5.0.3...5.0.4) (2018-04-17)

### [0.0.2](https://github.com/Masquerade-Circus/valyrian.js/compare/5.0.3...5.0.4) (2018-04-17)
### [0.0.2](https://github.com/Masquerade-Circus/valyrian.js/compare/5.0.3...5.0.4) (2018-04-17)
21 changes: 8 additions & 13 deletions dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,26 @@ var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __reExport = (target, module2, copyDefault, desc) => {
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
for (let key of __getOwnPropNames(module2))
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return target;
return to;
};
var __toCommonJS = /* @__PURE__ */ ((cache) => {
return (module2, temp) => {
return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
};
})(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);

// lib/index.ts
var lib_exports = {};
__export(lib_exports, {
default: () => lib_default
});
module.exports = __toCommonJS(lib_exports);
var ComponentString = "__component__";
var TextString = "#text";
var isNodeJs = Boolean(typeof process !== "undefined" && process.versions && process.versions.node);
Expand Down Expand Up @@ -561,4 +557,3 @@ v.setAttribute = setAttribute;
v.directive = directive;
v.use = use;
var lib_default = v;
module.exports = __toCommonJS(lib_exports);
2 changes: 1 addition & 1 deletion dist/index.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "valyrian.js",
"version": "6.0.7",
"version": "6.0.8",
"description": "Lightweight steel to forge PWAs. (Minimal Frontend Framework with server side rendering and other capabilities)",
"sideEffects": false,
"source": "lib/index.ts",
Expand Down

0 comments on commit 57ef0d1

Please sign in to comment.