1
0
Fork 0

chore: Reconfigure packages

This commit is contained in:
Joost De Cock 2020-09-12 19:05:38 +02:00
parent e4d725fc9e
commit 177974288e
38 changed files with 54 additions and 133 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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)

View file

@ -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

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>

View file

@ -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}
/>