diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..886820b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-04-03) + + +### Features + +* add build command ([4e910b9](https://github.com/adbayb/quickbundle/commit/4e910b9aa531e78795e50f47693e5c36518e5056)) diff --git a/examples/ts-module/CHANGELOG.md b/examples/ts-module/CHANGELOG.md new file mode 100644 index 0000000..c00fc87 --- /dev/null +++ b/examples/ts-module/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-04-03) + +**Note:** Version bump only for package ts-module diff --git a/examples/ts-module/package.json b/examples/ts-module/package.json index 28b8eef..209552e 100644 --- a/examples/ts-module/package.json +++ b/examples/ts-module/package.json @@ -1,6 +1,6 @@ { "name": "ts-module", - "version": "0.0.0", + "version": "0.1.0", "private": true, "source": "src/index.ts", "main": "dist/index.cjs.js", @@ -14,7 +14,7 @@ "devDependencies": { "@types/react": "17.0.3", "@types/react-dom": "17.0.3", - "quickbundle": "0.0.1", + "quickbundle": "0.1.0", "typescript": "4.2.3" } } diff --git a/examples/ts-preact/CHANGELOG.md b/examples/ts-preact/CHANGELOG.md new file mode 100644 index 0000000..886820b --- /dev/null +++ b/examples/ts-preact/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-04-03) + + +### Features + +* add build command ([4e910b9](https://github.com/adbayb/quickbundle/commit/4e910b9aa531e78795e50f47693e5c36518e5056)) diff --git a/examples/ts-preact/package.json b/examples/ts-preact/package.json index c0a2c78..05c8a74 100644 --- a/examples/ts-preact/package.json +++ b/examples/ts-preact/package.json @@ -1,6 +1,6 @@ { "name": "ts-preact", - "version": "0.0.0", + "version": "0.1.0", "private": true, "source": "src/index.tsx", "main": "dist/index.cjs.js", @@ -14,7 +14,7 @@ "devDependencies": { "@types/react": "17.0.3", "@types/react-dom": "17.0.3", - "quickbundle": "0.0.1", + "quickbundle": "0.1.0", "typescript": "4.2.3" }, "dependencies": { diff --git a/examples/ts-react/CHANGELOG.md b/examples/ts-react/CHANGELOG.md new file mode 100644 index 0000000..886820b --- /dev/null +++ b/examples/ts-react/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-04-03) + + +### Features + +* add build command ([4e910b9](https://github.com/adbayb/quickbundle/commit/4e910b9aa531e78795e50f47693e5c36518e5056)) diff --git a/examples/ts-react/package.json b/examples/ts-react/package.json index c743bfc..001c2ef 100644 --- a/examples/ts-react/package.json +++ b/examples/ts-react/package.json @@ -1,20 +1,20 @@ { "name": "ts-react", - "version": "0.0.0", + "version": "0.1.0", "private": true, "source": "src/index.tsx", - "main": "dist/index.cjs.js", - "module": "dist/index.mjs", - "types": "dist/index.d.ts", + "main": "dist/index.cjs.js", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", "scripts": { "clean": "rm -rf dist", "start": "yarn build && open public/index.html", "build": "quickbundle build" }, "devDependencies": { - "quickbundle": "0.0.1", "@types/react": "17.0.3", "@types/react-dom": "17.0.3", + "quickbundle": "0.1.0", "typescript": "4.2.3" }, "dependencies": { diff --git a/lerna.json b/lerna.json index 814bde9..79410f3 100644 --- a/lerna.json +++ b/lerna.json @@ -1,8 +1,11 @@ { - "version": "0.0.0", + "version": "0.1.0", "npmClient": "yarn", "useWorkspaces": true, - "packages": ["packages/*", "examples/*"], + "packages": [ + "packages/*", + "examples/*" + ], "command": { "init": { "exact": true diff --git a/packages/quickbundle/CHANGELOG.md b/packages/quickbundle/CHANGELOG.md new file mode 100644 index 0000000..886820b --- /dev/null +++ b/packages/quickbundle/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-04-03) + + +### Features + +* add build command ([4e910b9](https://github.com/adbayb/quickbundle/commit/4e910b9aa531e78795e50f47693e5c36518e5056)) diff --git a/packages/quickbundle/package.json b/packages/quickbundle/package.json index c97e43d..52cf9df 100644 --- a/packages/quickbundle/package.json +++ b/packages/quickbundle/package.json @@ -1,6 +1,6 @@ { "name": "quickbundle", - "version": "0.0.1", + "version": "0.1.0", "bin": { "quickbundle": "bin/index.js" },