-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for local configuration file #4
Comments
Sounds interesting. Let's expand this a bit.
Pretty much taking NPMs approach for project management and applying it here. WDYT? |
Example .wmlconfig {
"0": {
"src": "/Users/dutzi/documents/wix/restaurants-components",
"dest": "/Users/dutzi/documents/wix/restaurants-dashboard/node_modules/@wix/restaurants-components",
"enabled": false
},
"1": {
"src": "/Users/dutzi/documents/wix/wixrest-utils-js",
"dest": "/Users/dutzi/documents/wix/restaurants-orders/node_modules/@wix/wixrest-utils",
"enabled": true
},
"2": {
"src": "/Users/dutzi/documents/wix/restaurants-redux",
"dest": "/Users/dutzi/documents/wix/restaurants-orders/node_modules/@wix/restaurants-redux",
"enabled": true
},
"3": {
"src": "/Users/dutzi/documents/wix/restaurants-reflux",
"dest": "/Users/dutzi/documents/wix/restaurants-orders/node_modules/@wix/restaurants-reflux",
"enabled": false
},
"4": {
"src": "/Users/dutzi/documents/wix/restaurants-components",
"dest": "/Users/dutzi/documents/wix/restaurants-orders/node_modules/@wix/restaurants-components",
"enabled": true
}
} |
@dutzi the wml tools seems great, I'm in the process of testing it in our environment as a replacement for the For now I'm installing wix/wml locally and using A few thoughts on your suggestion:
I would like to correct my comment about
What do you think? |
It would be awesome if we could somewhat define the required wml config for a specific project in a configuration file, and then be able to
add
,enable
anddisable
everything at once.The text was updated successfully, but these errors were encountered: