Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.rulers": [
140
],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Changelog

## 1.4.4 - Optimize code

- Remove two array instantiations when performing `mapVirtualPropertyToClassProperty`
- Invert the condition of `getMetadata` to avoid a not
- Kill a useless `.replace()` of `getMetadata`

## 1.4.1 - Optimize code

This release tries to optimize a lot the project in order to use it in industrial projects

## 1.1.0

- Update bundle dependencies
Expand Down
2 changes: 1 addition & 1 deletion dist/lib.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/lib.node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib.node.js.map

Large diffs are not rendered by default.

56 changes: 54 additions & 2 deletions package-lock.json

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

16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@outfoxx/jackson-js",
"version": "1.4.0",
"name": "@badetitou/jackson-js",
"version": "1.4.1",
"description": "JavaScript object serialization and deserialization library using decorators. It supports also advanced Object concepts such as polymorphism, Object identity and cyclic objects.",
"author": {
"name": "Lorenzo Pichilli",
"email": "pichillilorenzo@gmail.com",
"url": "https://github.com/pichillilorenzo"
"name": "Benoît Verhaeghe",
"email": "banoit@badetitou.fr",
"url": "https://github.com/badetitou"
},
"keywords": [
"jackson-json",
Expand All @@ -25,16 +25,18 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pichillilorenzo/jackson-js"
"url": "https://github.com/badetitou/jackson-js"
},
"scripts": {
"clean": "rimraf ./dist",
"clean:doc": "rimraf ./docs/latest && rimraf ./docs/$npm_package_version",
"build:doc": "npm run clean:doc && npm run build:doc:latest && npm run build:doc:current-version && node ./build-index-docs.js",
"build:doc:latest": "typedoc --out ./docs/latest ./src --readme none --excludePrivate --excludeExternals --exclude \"**/!(@types)/*+(util|index).ts\" --custom-tags-config typedoc-tags-config.json",
"build:doc:current-version": "typedoc --out ./docs/$npm_package_version ./src --name \"jackson-js $npm_package_version\" --readme none --excludePrivate --excludeExternals --exclude \"**/!(@types)/*+(util|index).ts\" --custom-tags-config typedoc-tags-config.json",
"build:dev": "npm run clean && ./node_modules/.bin/webpack --config webpack.dev.js",
"build:dev": "npm run clean && \"./node_modules/.bin/webpack\" --config webpack.dev.js",
"build:prod": "npm run clean && ./node_modules/.bin/webpack --config webpack.prod.js",
"build:win:dev": "npm run clean && \"./node_modules/.bin/webpack\" --config webpack.dev.js",
"build:win:prod": "npm run clean && \"./node_modules/.bin/webpack\" --config webpack.prod.js",
"start:node:dev": "node dist/lib.node",
"test-es5": "TZ=UTC TS_NODE_PROJECT=tsconfig.json ava --concurrency=8 --timeout=3m --verbose",
"test-es6": "TZ=UTC TS_NODE_PROJECT=tsconfig.es6.json ava --concurrency=8 --timeout=3m --verbose",
Expand Down
Loading