mu-editor / Mu-tate

An experimental version of Mu made in JavaScript
MIT License
3 stars 4 forks source link

rough SCSS starting point [WIP] #12

Closed hawkz closed 4 years ago

ntoll commented 4 years ago

Thank you @hawkz ..!

carlosperate commented 4 years ago

I'm getting this on master with this merge:

image

Runned:

$ make setup
rm -rf docs/_build
rm -rf *.mp4
rm -rf *.log
rm -rf .git/avatar/*
find . \( -name '*.py[co]' -o -name dropin.cache \) -delete
find . \( -name '*.bak' -o -name dropin.cache \) -delete
find . \( -name '*.tgz' -o -name dropin.cache \) -delete
find . | grep -E "(__pycache__)" | xargs rm -rf
command -v node >/dev/null 2>&1 || { echo >&2 "I require node but it's not installed. Aborting."; exit 1; }
command -v npm >/dev/null 2>&1 || { echo >&2 "I require npm but it's not installed. Aborting."; exit 1; }
npm install --prefix ./mu
removed 168 packages and audited 124 packages in 1.035s

3 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities

$  make run  
rm -rf docs/_build
rm -rf *.mp4
rm -rf *.log
rm -rf .git/avatar/*
find . \( -name '*.py[co]' -o -name dropin.cache \) -delete
find . \( -name '*.bak' -o -name dropin.cache \) -delete
find . \( -name '*.tgz' -o -name dropin.cache \) -delete
find . | grep -E "(__pycache__)" | xargs rm -rf
npm start --prefix ./mu

> Mu@0.0.1 start /Users/microbit-carlos/workspace/mine/Mu-tate/mu
> sass scss/mu.scss css/mu.css --watch & electron .

Sass is watching for changes. Press Ctrl-C to stop.

(electron) The default value of app.allowRendererProcessReuse is deprecated, it is currently "false".  It will change to be "true" in Electron 9.  For more information please check https://github.com/electron/electron/issues/18397
ntoll commented 4 years ago

Yeah. This is a WiP. Move fast and break things... etc... ;-)