-
-
Notifications
You must be signed in to change notification settings - Fork 496
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
No rebuild or watch work (Win10 - WSL2) #2187
Comments
I was able to watch correctly my sass files changing to node-sass so apparently that part was some wrong configuration. I think my project setup couldn't be simpler ` module.exports = function (eleventyConfig) {
}` PLEASE HELP |
No one ? |
Appreciate your patience! A few folks have commented about this on twitter https://twitter.com/slecache/status/1481317668141547524 Folks have had success with using
|
I, too am having this issue. "Just move files" isn't really a workable solution, I have mine there so that both systems can share files, instead of duplicating. (I do access via a '~' path in WSL using symlinks, so I guess it's not the path that seems to cause the issue) |
Depending on your |
Duplicate of #701. You can workaround it by moving your project directory under |
Describe the bug
I make a clean install with 11ty 1.0, No problems during install, I setup the .elevnty.js and run tasks to watch changes with sass. Setup a template, etc
I start Eleventy correctly, but if I make ANY change to md, html or scss it does not rebuild, or watch anything. I have to stop the run task and restart the task again to see my changes.
I've tried every tutorial, tip and post I found on internet... it just not working for me, please be kind :/
To Reproduce
This is my .eleventy.js file
And my package.json
{
"name": "aes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch:sass": "npx sass src/sass:_site/css --watch",
"build:sass": "sass src/sass:_site/css",
"watch:eleventy": "npx @11ty/eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all build:sass --parallel watch:eleventy",
"build": "npm-run-all build:*"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.0"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.49.0"
}
}
Expected behavior
It does not rebuild, or watch anything on my project.
Screenshots
Site structure
Environment:
The text was updated successfully, but these errors were encountered: