Skip to content

Commit

Permalink
release v - 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwalguptaofficial committed Apr 21, 2023
1 parent 8f752f1 commit 4674596
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mahal",
"version": "1.9.0",
"version": "1.9.1",
"description": "Simple, modern web application framework for UI development.",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
Expand Down Expand Up @@ -66,4 +66,4 @@
"webpack-cli": "^5.0.2",
"webpack-merge": "^5.1.1"
}
}
}
2 changes: 1 addition & 1 deletion src/decorators/directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function directive(target, key: string): void;
export function directive(name?: string): Function;
export function directive(...args) {
return wrapMethodDecorator(args, createDirective);
};
}

function createDirective(target: any, methodName: string, name: string) {
const obj = {};
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function formatter(target, key: string): void;
export function formatter(name?: string): Function;
export function formatter(...args) {
return wrapMethodDecorator(args, createFormatter);
};
}

function createFormatter(target: any, methodName: string, name: string) {
const obj = {};
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/prop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function prop(target, key: string): void;
export function prop(options?: IPropOption | any): Function;
export function prop(...args) {
return wrapMethodDecorator(args, createProp);
};
}

function createProp(target, key: string, options) {
const obj = {};
Expand Down
8 changes: 4 additions & 4 deletions tests/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 tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"test:mochapack": "cross-env NODE_ENV=test mochapack --require ./typescript/test/setup.js --webpack-config typescript/webpack.config.test.js \"typescript/test/**/*.test.ts\""
},
"dependencies": {
"@mahaljs/html-compiler": "file:../../mahal-html-compiler/mahaljs-html-compiler-1.9.0.tgz",
"@mahaljs/html-compiler": "^1.9.0",
"@mahaljs/test-utils": "^1.9.0",
"@mahaljs/util": "^1.9.0",
"@mahaljs/webpack-loader": "^1.9.0",
Expand Down

0 comments on commit 4674596

Please sign in to comment.