chore: Reconfigure packages
This commit is contained in:
parent
41d8e92e06
commit
c9da9d6947
170 changed files with 1668 additions and 2674 deletions
|
@ -1,133 +1,111 @@
|
|||
# Change log for: @freesewing/sandy
|
||||
|
||||
|
||||
## Unreleased
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
## 2.6.0 (2020-04-26)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
## 2.5.0 (2020-04-05)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.6 (2020-03-23)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.5 (2020-03-19)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.4 (2020-03-15)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.3 (2020-03-12)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.2 (2020-03-08)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.1 (2020-03-04)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.4.0 (2020-02-29)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.3.0 (2020-02-23)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.2.0 (2020-02-22)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed tags in pattern config file
|
||||
- Fixed tags in pattern config file
|
||||
|
||||
## 2.1.9 (2020-01-18)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.8 (2019-12-16)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.7 (2019-12-15)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.6 (2019-11-24)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.5 (2019-11-19)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.4 (2019-11-01)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.3 (2019-10-18)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.2 (2019-10-14)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.1 (2019-10-13)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.1.0 (2019-10-06)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.0.4 (2019-09-27)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.0.3 (2019-09-15)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.0.2 (2019-09-06)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
## 2.0.1 (2019-09-01)
|
||||
|
||||
**Note:** Version bump only for package sandy
|
||||
|
||||
|
||||
|
||||
|
||||
## 2.0.0 (2019-08-25)
|
||||
|
||||
This is the **initial release**, and the start of this change log.
|
||||
|
|
|
@ -6,16 +6,23 @@ import '@freesewing/css-theme'
|
|||
|
||||
import Pattern from 'pattern'
|
||||
|
||||
const App = props => {
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
let translations = {
|
||||
JSON: 'JSON',
|
||||
someOtherString: 'Some other string that needs translation'
|
||||
}
|
||||
|
||||
return (
|
||||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
userLanguage="en"
|
||||
translations={translations}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@freesewing/sandy",
|
||||
"version": "2.5.0",
|
||||
"version": "2.6.0-rc.0",
|
||||
"description": "A FreeSewing pattern for a circle skirt",
|
||||
"author": "AlfaLyr (https://github.com/alfalyr)",
|
||||
"homepage": "https://freesewing.org/",
|
||||
|
@ -34,8 +34,8 @@
|
|||
"testci": "BABEL_ENV=production ./node_modules/.bin/_mocha tests/*.test.js --require @babel/register"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^2.5.0",
|
||||
"@freesewing/plugin-bundle": "^2.5.0"
|
||||
"@freesewing/core": "^2.6.0-rc.0",
|
||||
"@freesewing/plugin-bundle": "^2.6.0-rc.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
|
@ -46,23 +46,23 @@
|
|||
"eslint": "^5.16.0",
|
||||
"babel-jest": "24.7.1",
|
||||
"jest": "24.7.1",
|
||||
"@freesewing/components": "^2.5.0",
|
||||
"@freesewing/css-theme": "^2.5.0",
|
||||
"@freesewing/i18n": "^2.5.0",
|
||||
"@freesewing/mui-theme": "^2.5.0",
|
||||
"@freesewing/plugin-bust": "^2.5.0",
|
||||
"@freesewing/plugin-buttons": "^2.5.0",
|
||||
"@freesewing/plugin-flip": "^2.5.0",
|
||||
"@freesewing/utils": "^2.5.0",
|
||||
"@freesewing/components": "^2.6.0-rc.0",
|
||||
"@freesewing/css-theme": "^2.6.0-rc.0",
|
||||
"@freesewing/i18n": "^2.6.0-rc.0",
|
||||
"@freesewing/mui-theme": "^2.6.0-rc.0",
|
||||
"@freesewing/plugin-bust": "^2.6.0-rc.0",
|
||||
"@freesewing/plugin-buttons": "^2.6.0-rc.0",
|
||||
"@freesewing/plugin-flip": "^2.6.0-rc.0",
|
||||
"@freesewing/utils": "^2.6.0-rc.0",
|
||||
"@svgr/rollup": "^2.4.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"gh-pages": "^1.2.0",
|
||||
"react-scripts": "^3.0.0",
|
||||
"webpack": "4.43.0",
|
||||
"webpack": "4.29.6",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-babel": "^4.0.1",
|
||||
"rollup-plugin-babel-minify": "^7.0.0",
|
||||
"rollup-plugin-commonjs": "^10.1.0",
|
||||
"rollup-plugin-commonjs": "^9.1.3",
|
||||
"rollup-plugin-json": "^3.1.0",
|
||||
"rollup-plugin-node-resolve": "^3.3.0",
|
||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue