Skip to content

Commit

Permalink
chore(release): publish v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adbayb committed Apr 3, 2021
1 parent 1b77ae9 commit 7d1c230
Show file tree
Hide file tree
Showing 10 changed files with 67 additions and 12 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
8 changes: 8 additions & 0 deletions examples/ts-module/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions examples/ts-module/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
11 changes: 11 additions & 0 deletions examples/ts-preact/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
4 changes: 2 additions & 2 deletions examples/ts-preact/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
11 changes: 11 additions & 0 deletions examples/ts-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
10 changes: 5 additions & 5 deletions examples/ts-react/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
7 changes: 5 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 11 additions & 0 deletions packages/quickbundle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion packages/quickbundle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quickbundle",
"version": "0.0.1",
"version": "0.1.0",
"bin": {
"quickbundle": "bin/index.js"
},
Expand Down

0 comments on commit 7d1c230

Please sign in to comment.