Skip to content

Commit

Permalink
Use ES6 for module and target generated code #20
Browse files Browse the repository at this point in the history
  • Loading branch information
Elie NEHME committed Mar 8, 2022
1 parent 74f354c commit 134ea90
Show file tree
Hide file tree
Showing 12 changed files with 70 additions and 93 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## V1.1.0-alpha - 2022-03-08

### Added

- Nothing.

### Changed

- [#20](https://github.com/elie29/store/issues/20) Use ES6 for module and target generated code.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## V1.0.7 - 2021-05-22

### Added
Expand Down
23 changes: 2 additions & 21 deletions dist/clone.js

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

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

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

10 changes: 3 additions & 7 deletions dist/index.js

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

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

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

7 changes: 3 additions & 4 deletions dist/settings.js

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

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

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

84 changes: 31 additions & 53 deletions dist/store.js

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

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

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

2 changes: 1 addition & 1 deletion 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": "@elie29/store",
"version": "1.0.7",
"version": "1.1.0-alpha",
"author": "Elie NEHME",
"description": "A simple store management for front-end applications",
"license": "MIT",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"target": "ES6",
"module": "ES6",
"moduleResolution": "node",
"baseUrl": "./",
"outDir": "dist/",
"declaration": true,
"sourceMap": true,
"esModuleInterop": true,
"noImplicitUseStrict": true,
"experimentalDecorators": true,
"lib": ["dom", "esnext"],
Expand Down

0 comments on commit 134ea90

Please sign in to comment.