chore: Fixed dependencies for github workflows
This commit is contained in:
parent
508adb298e
commit
a2caaa7611
193 changed files with 1596 additions and 1217 deletions
|
@ -1,44 +1,47 @@
|
|||
# Change log for: @freesewing/core
|
||||
|
||||
|
||||
## 2.6.0 (2020-05-01)
|
||||
|
||||
### Changed
|
||||
|
||||
- utils now includes `Bezier` which holds the bezier-js library so you don't need to re-import it
|
||||
- We no longer set the plugin configuration/data object to fall in `pattern.use()`
|
||||
- utils now includes `Bezier` which holds the bezier-js library so you don't need to re-import it
|
||||
- We no longer set the plugin configuration/data object to fall in `pattern.use()`
|
||||
|
||||
## 2.4.4 (2020-03-15)
|
||||
|
||||
### Fixed
|
||||
|
||||
- New Svg.escapeText() method to escape text at render time, rather than at draft time This fixes the difference in the inch symbol is displayed in the React component or rendered SVG
|
||||
- New Svg.escapeText() method to escape text at render time, rather than at draft time This fixes the difference in the inch symbol is displayed in the React component or rendered SVG
|
||||
|
||||
## 2.2.0 (2020-02-22)
|
||||
|
||||
### Added
|
||||
|
||||
- Added the `Path.noop()` method
|
||||
- Added the `Path.insop()` methods
|
||||
- Added the `Path.noop()` method
|
||||
- Added the `Path.insop()` methods
|
||||
|
||||
## 2.1.9 (2020-01-18)
|
||||
|
||||
### Fixed
|
||||
|
||||
- [#19](https://github.com/freesewing/freesewing/issues/19): Path offset issue is now fixed in upstream bezier-js@2.4.6
|
||||
- [#19](https://github.com/freesewing/freesewing/issues/19): Path offset issue is now fixed in upstream bezier-js@2.4.6
|
||||
|
||||
## 2.1.0 (2019-10-06)
|
||||
|
||||
### Changed
|
||||
|
||||
- The pattern super constructor now sets a `config` property that holds the pattern configuration. This means that unlike before, there is no need to instantiate a pattern to access its config. You can just import the pattern, and it's config property will contain the pattern config.
|
||||
- The pattern super constructor now sets a `config` property that holds the pattern configuration. This means that unlike before, there is no need to instantiate a pattern to access its config. You can just import the pattern, and it's config property will contain the pattern config.
|
||||
|
||||
## 2.0.0 (2019-08-25)
|
||||
|
||||
### Added
|
||||
|
||||
- Initial release
|
||||
- Initial release
|
||||
|
||||
|
||||
This is the **initial release**, and the start of this change log.
|
||||
|
||||
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||
> As such, that history is out of scope for this change log.
|
||||
|
||||
|
|
|
@ -35,11 +35,13 @@
|
|||
"report": "BABEL_ENV=production nyc report --reporter=html",
|
||||
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {
|
||||
"bezier-js": "^2.4.6",
|
||||
"bin-pack": "1.0.2",
|
||||
"hooks": "^0.3.2"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"dist/*",
|
||||
"README.md",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue