chore: Reconfigure packages
This commit is contained in:
parent
e4d725fc9e
commit
177974288e
38 changed files with 54 additions and 133 deletions
2
.github/workflows/tests.teagan.yml
vendored
2
.github/workflows/tests.teagan.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
|||
env:
|
||||
CI: true
|
||||
- name: Install peer & test dependencies
|
||||
run: "cd packages/teagan && npm install @freesewing/core@^2.9.0-rc.1 @freesewing/plugin-bundle@^2.9.0-rc.1 @freesewing/brian@^2.9.0-rc.1 @freesewing/models@2.9.0-rc.1 @freesewing/pattern-info@2.9.0-rc.1 mocha chai"
|
||||
run: "cd packages/teagan && npm install @freesewing/core@^2.9.0-rc.1 @freesewing/plugin-bundle@^2.9.0-rc.1 @freesewing/brian@^2.9.0-rc.1 @freesewing/plugin-bust@^2.9.0-rc.1 @freesewing/models@2.9.0-rc.1 @freesewing/pattern-info@2.9.0-rc.1 mocha chai"
|
||||
env:
|
||||
CI: true
|
||||
- name: Build pattern
|
||||
|
|
|
@ -18,6 +18,14 @@
|
|||
#### Added
|
||||
|
||||
- Parts not get a `name` property set that hold their (own) name/id
|
||||
- Added the `info` type to raised events
|
||||
- Added support for conditional loading of plugins
|
||||
|
||||
### create-freesewing-pattern
|
||||
|
||||
#### Fixed
|
||||
|
||||
- No longer instantiate a pattern, just to get the config
|
||||
|
||||
### css-theme
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ Unreleased:
|
|||
- Added Discord icon in Icon component
|
||||
core:
|
||||
- Parts not get a `name` property set that hold their (own) name/id
|
||||
- Added the `info` type to raised events
|
||||
- Added support for conditional loading of plugins
|
||||
css-theme:
|
||||
- Changes to UI colors
|
||||
i18n:
|
||||
|
@ -26,6 +28,8 @@ Unreleased:
|
|||
teagan:
|
||||
- Teagan is a T-shirt pattern
|
||||
Fixed:
|
||||
create-freesewing-pattern:
|
||||
- No longer instantiate a pattern, just to get the config
|
||||
i18n:
|
||||
- Replaced a few identical files with symlinks
|
||||
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
### Added
|
||||
|
||||
- Parts not get a `name` property set that hold their (own) name/id
|
||||
- Added the `info` type to raised events
|
||||
- Added support for conditional loading of plugins
|
||||
|
||||
## 2.8.0 (2020-08-10)
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
# Change log for: create-freesewing-pattern
|
||||
|
||||
|
||||
## 2.9.0 (2020-09-09)
|
||||
|
||||
### Fixed
|
||||
|
||||
- No longer instantiate a pattern, just to get the config
|
||||
|
||||
## 2.8.1 (2020-08-16)
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
|
@ -7,9 +7,6 @@ import '@freesewing/css-theme'
|
|||
import Pattern from 'pattern'
|
||||
|
||||
const App = (props) => {
|
||||
let instance = new Pattern()
|
||||
let config = instance.config
|
||||
|
||||
// You can use this to add transations
|
||||
/*
|
||||
let translations = {
|
||||
|
@ -22,7 +19,7 @@ const App = (props) => {
|
|||
<Workbench
|
||||
freesewing={freesewing}
|
||||
Pattern={Pattern}
|
||||
config={config}
|
||||
config={Pattern.config}
|
||||
userLanguage="en"
|
||||
//translations={translations}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue