@@ -44,37 +44,37 @@ module.exports = {
44
44
const actions = [
45
45
{
46
46
type :'add' ,
47
- path :'containers/{{properCase name}}/index.js' ,
47
+ path :'../../../ containers/{{properCase name}}/index.js' ,
48
48
templateFile :'./container/class.js.hbs' ,
49
49
abortOnFail :true ,
50
50
} ,
51
51
{
52
52
type :'add' ,
53
- path :'containers/{{properCase name}}/logic.js' ,
53
+ path :'../../../ containers/{{properCase name}}/logic.js' ,
54
54
templateFile :'./container/logic.js.hbs' ,
55
55
abortOnFail :true ,
56
56
} ,
57
57
{
58
58
type :'add' ,
59
- path :'containers/{{properCase name}}/store.js' ,
59
+ path :'../../../ containers/{{properCase name}}/store.js' ,
60
60
templateFile :'./container/store.js.hbs' ,
61
61
abortOnFail :true ,
62
62
} ,
63
63
{
64
64
type :'add' ,
65
- path :'containers/{{properCase name}}/styles/index.js' ,
65
+ path :'../../../ containers/{{properCase name}}/styles/index.js' ,
66
66
templateFile :'./container/styles.js.hbs' ,
67
67
abortOnFail :true ,
68
68
} ,
69
69
{
70
70
type :'add' ,
71
- path :'containers/{{properCase name}}/tests/index.test.js' ,
71
+ path :'../../../ containers/{{properCase name}}/tests/index.test.js' ,
72
72
templateFile :'./container/test.js.hbs' ,
73
73
abortOnFail :true ,
74
74
} ,
75
75
{
76
76
type :'add' ,
77
- path :'containers/{{properCase name}}/tests/store.test.js' ,
77
+ path :'../../../ containers/{{properCase name}}/tests/store.test.js' ,
78
78
templateFile :'./container/store.test.js.hbs' ,
79
79
abortOnFail :true ,
80
80
} ,
@@ -83,7 +83,7 @@ module.exports = {
83
83
if ( data . wantSchema ) {
84
84
actions . push ( {
85
85
type :'add' ,
86
- path :'containers/{{properCase name}}/schema.js' ,
86
+ path :'../../../ containers/{{properCase name}}/schema.js' ,
87
87
templateFile :'./container/schema.js.hbs' ,
88
88
abortOnFail :true ,
89
89
} )
@@ -93,7 +93,7 @@ module.exports = {
93
93
if ( data . wantI18n ) {
94
94
actions . push ( {
95
95
type :'add' ,
96
- path :'containers/{{properCase name}}/lang.js' ,
96
+ path :'../../../ containers/{{properCase name}}/lang.js' ,
97
97
templateFile :'./container/lang.js.hbs' ,
98
98
abortOnFail :true ,
99
99
} )