-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
gulp build not creating/outputing files #5551
Comments
I am seeing this, as well. What's even more problematic is that with semantic.json in the root directory, the components section of the config is observed. When moved to inside the semantic folder, the components section is ignored and all components are built. {
"base": "semantic/",
"paths": {
"source": {
"config": "src/theme.config",
"definitions": "src/definitions/",
"site": "src/site/",
"themes": "src/themes/"
},
"output": {
"packaged": "dist/",
"uncompressed": "dist/components/",
"compressed": "dist/components/",
"themes": "dist/themes/"
},
"clean": "dist/"
},
"permission": false,
"autoInstall": false,
"rtl": false,
"components": [
"reset",
"site",
"container",
"header",
"list",
"menu",
"sidebar",
"state",
"visibility"
],
"version": "2.2.13"
} |
I have a whole bunch of errors on a clean install of
The UPDATE: The errors above disappeared after a |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions. |
Scenario 1: semantic.json is in my projects root directory. My working directory is in semantic fold. gulp version command works fine, it outputs version number 2.2.10. However, gulp build runs properly, but nothing is created.
[22:57:56] Starting 'build'...
Building Semantic
[22:57:56] Starting 'build-javascript'...
Building Javascript
[22:57:56] Starting 'build-css'...
Building CSS
[22:57:56] Starting 'build-assets'...
Building assets
[22:57:56] Starting 'package compressed js'...
[22:57:56] Starting 'package uncompressed js'...
[22:57:56] Finished 'build-javascript' after 47 ms
[22:57:56] Starting 'package uncompressed css'...
[22:57:56] Starting 'package compressed css'...
[22:57:56] Finished 'build-assets' after 32 ms
[22:57:56] Finished 'package uncompressed js' after 13 ms
[22:57:56] Finished 'package uncompressed css' after 9.51 ms
[22:57:56] Finished 'package compressed js' after 22 ms
[22:57:56] Finished 'package compressed css' after 5.44 ms
[22:57:56] Finished 'build-css' after 41 ms
[22:57:56] Finished 'build' after 59 ms
scenario 2: I move semantic.json in semantic folder. This time gulp build works fine, it creates files. However, gulp version returns undefined version number.
I'm confused, what's problem. Thank you in advance.
My semantic.json file
{
"base": "/vendor/semantic/",
"paths": {
"source": {
"config": "src/theme.config",
"definitions": "src/definitions/",
"site": "src/site/",
"themes": "src/themes/"
},
"output": {
"packaged": "dist/",
"uncompressed": "dist/components/",
"compressed": "dist/components/",
"themes": "dist/themes/"
},
"clean": "dist/"
},
"permission": false,
"autoInstall": false,
"rtl": false,
"version": "2.2.10"
}
The text was updated successfully, but these errors were encountered: