Updated! (see CHANGELOG.md

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2019-10-24 23:01:58 +02:00
parent 80b15c964d
commit 8866928585
4 changed files with 20 additions and 5 deletions

View File

@ -1,5 +1,7 @@
node_modules/
src/ src/
.gitignore .gitignore
build.json build.json
tsconfig.json tsconfig.json
yarn.lock yarn.lock
.npmignore

View File

@ -11,9 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
### Removed ### Removed
## [0.2.1] - 2019-10-24
### Changed
- changed location of files to make it easier to use !
## [0.2.0] - 2019-10-24 ## [0.2.0] - 2019-10-24
### Added ### Added
- .gitignore - .gitignore
- .npmignore - .npmignore
- CHANGELOG.md - CHANGELOG.md
@ -23,13 +30,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- too much things - too much things
### Changed ### Changed
- everything - everything
### Fixed ### Fixed
- everything - everything
## [0.1.0] - 2019-08-27 ## [0.1.0] - 2019-08-27
### Added ### Added
- FormManager - FormManager
- assign - assign
- setupInputs - setupInputs
@ -65,5 +76,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- getValue - getValue
- Assignement - Assignement
<!-- [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD --> <!-- [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD -->
[0.2.1]: https://git.delta-wings.net/dzeio/FormManager/src/tag/0.2.1
[0.2.0]: https://git.delta-wings.net/dzeio/FormManager/src/tag/0.2.0 [0.2.0]: https://git.delta-wings.net/dzeio/FormManager/src/tag/0.2.0
[0.1.0]: https://git.delta-wings.net/dzeio/FormManager/src/tag/0.1.0 [0.1.0]: https://git.delta-wings.net/dzeio/FormManager/src/tag/0.1.0

View File

@ -1,8 +1,8 @@
{ {
"name": "@dzeio/form-manager", "name": "@dzeio/form-manager",
"version": "0.2.0", "version": "0.2.1",
"main": "./dist/FormManager.js", "main": "./FormManager.js",
"types": "./dist/FormManager.d.ts", "types": "./FormManager.d.ts",
"description": "A powerfull Form Manager", "description": "A powerfull Form Manager",
"repository": { "repository": {
"type": "git", "type": "git",
@ -23,6 +23,7 @@
"typescript": "^3.6.4" "typescript": "^3.6.4"
}, },
"scripts": { "scripts": {
"build": "tsc" "build": "tsc --clean",
"clean": "rm *.js; rm *.d.ts; rm -r modules/; exit 0"
} }
} }

View File

@ -13,7 +13,7 @@
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */ // "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */ // "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./dist", /* Redirect output structure to the directory. */ "outDir": "", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */ // "composite": true, /* Enable project compilation */
"tsBuildInfoFile": "./build.json", /* Specify file to store incremental compilation information */ "tsBuildInfoFile": "./build.json", /* Specify file to store incremental compilation information */