Skip to content

Commit 18c28d1

Browse files
committed
chore: Release 1.7.0
1 parent a979c6a commit 18c28d1

File tree

4 files changed

+77
-2
lines changed

4 files changed

+77
-2
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [1.7.0](https://github.com/daybrush/scenejs/compare/1.5.0...1.7.0) (2022-12-10)
7+
### :sparkles: Packages
8+
* `scenejs` 1.7.0
9+
10+
11+
### :rocket: New Features
12+
13+
* All
14+
* add toCSSObject camelcase ([c169d55](https://github.com/daybrush/scenejs/commit/c169d5560e0b651e8a4d960ea0da7e0a559af9ef))
15+
* Other
16+
* add getCurrentFrame, getCurrentFrames methohds ([1754c85](https://github.com/daybrush/scenejs/commit/1754c857f5e371811936b4ad7afe184c54ef4233))
17+
18+
19+
### :bug: Bug Fix
20+
21+
* All
22+
* check frame value type ([38551ef](https://github.com/daybrush/scenejs/commit/38551eff457d96eb481432ccbb471e9903663f0e))
23+
* fix invalid brackets ([a47e5fc](https://github.com/daybrush/scenejs/commit/a47e5fcf94ea62f00423b64ffa5f7d4b8f63d7d6))
24+
* fix types ([6e0d56d](https://github.com/daybrush/scenejs/commit/6e0d56d2b69dfa3318d144d3312f2a37d943288f))
25+
* use decamelize for toCSS ([a78f562](https://github.com/daybrush/scenejs/commit/a78f562dce16920dd111e39d3ad7f2e64703e319))
26+
* Other
27+
* fix typo ([5c0f173](https://github.com/daybrush/scenejs/commit/5c0f1732ffa5f6832b88abb7d5ce5592f0e79428))
28+
29+
30+
### :memo: Documentation
31+
32+
* All
33+
* fix README ([8ab1d65](https://github.com/daybrush/scenejs/commit/8ab1d65ee2d70c8762645561216e2f6bfe5b0ef1))
34+
* fix README ([fdfe1e3](https://github.com/daybrush/scenejs/commit/fdfe1e308e434be552addc89324a688dcf45d628))
35+
36+
37+
### :mega: Other
38+
39+
* All
40+
* apply lerna ([39520c3](https://github.com/daybrush/scenejs/commit/39520c38008399d7947684f7e443b9b1765e422b))
41+
* fix lint ([5aac474](https://github.com/daybrush/scenejs/commit/5aac474568a9f7a70b5fe954f09d61193739aa8f))
42+
* update rollup versions ([ffacef1](https://github.com/daybrush/scenejs/commit/ffacef1a9ae3572cebe0a52a4519fc5d9666e3d8))
43+
* update version ([383ddae](https://github.com/daybrush/scenejs/commit/383ddae59cf24eb56dcf2677bdda75a36c5ac831))
44+
* Other
45+
* add npmignore file ([0d7d68b](https://github.com/daybrush/scenejs/commit/0d7d68b8deacc7868cfd549f5303af2b51eca17f))
46+
* publish packages ([a979c6a](https://github.com/daybrush/scenejs/commit/a979c6a802b04836ae193bab1fcecb89099e10fd))
47+
* Release 1.5.0 ([44c5cfc](https://github.com/daybrush/scenejs/commit/44c5cfc5164627df02d8755ca272567f92088a37))
48+
* Update FUNDING.yml ([adaaea2](https://github.com/daybrush/scenejs/commit/adaaea229f6813b5df4b018613026bf244ea219c))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lernaHelperOptions": {
99
"deployFileMap": [
1010
{
11-
"basePath": "packages/moveable/dist",
11+
"basePath": "packages/scenejs/dist",
1212
"dists": [
1313
"demo/release/{{version}}/dist",
1414
"demo/release/latest/dist"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"changelog": "lerna-helper changelog --type all --base scenejs",
3636
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
3737
"demo:start": "rollup -c rollup.config.demo.js -w",
38-
"demo:build": "rm -rf ./demo/dist && rollup -c rollup.config.demo.js",
38+
"demo:build": "rm -rf ./demo/dist && npm run build --prefix packages/demo",
3939
"demo:deploy": "gh-pages -d ./demo --dest=./ --add --remote origin",
4040
"deploy": "lerna-helper deploy --base scenejs",
4141
"release": "lerna-helper release --base scenejs"

packages/scenejs/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [1.7.0](https://github.com/daybrush/scenejs/compare/scenejs@1.6.0...scenejs@1.7.0) (2022-12-10)
7+
8+
9+
### :rocket: New Features
10+
11+
* add toCSSObject camelcase ([c169d55](https://github.com/daybrush/scenejs/commit/c169d5560e0b651e8a4d960ea0da7e0a559af9ef))
12+
13+
14+
### :bug: Bug Fix
15+
16+
* fix types ([6e0d56d](https://github.com/daybrush/scenejs/commit/6e0d56d2b69dfa3318d144d3312f2a37d943288f))
17+
* use decamelize for toCSS ([a78f562](https://github.com/daybrush/scenejs/commit/a78f562dce16920dd111e39d3ad7f2e64703e319))
18+
19+
20+
### :memo: Documentation
21+
22+
* fix README ([8ab1d65](https://github.com/daybrush/scenejs/commit/8ab1d65ee2d70c8762645561216e2f6bfe5b0ef1))
23+
24+
25+
### :mega: Other
26+
27+
* update rollup versions ([ffacef1](https://github.com/daybrush/scenejs/commit/ffacef1a9ae3572cebe0a52a4519fc5d9666e3d8))

0 commit comments

Comments
 (0)