Remove sassrc (not needed).

pull/1104/head
Rick Carlino 2019-02-05 07:56:15 -06:00
parent e3a2d72abe
commit e7592081d4
3 changed files with 3 additions and 11 deletions

View File

@ -1,9 +0,0 @@
const path = require('path')
const CWD = process.cwd()
module.exports = {
"includePaths": [
"node_modules"
]
}

View File

@ -7,7 +7,7 @@ if Rails.env == "development"
ENV['OS_UPDATE_SERVER'] = "http://non_legacy_update_url.com"
# CREDIT: Faker Ruby Gem
VEGGIES = %w(artichoke arugula asparagus broccoli
cabbage caper carrot cauliflower celery chive cornichon cucumber
cabbage carrot cauliflower celery chive cornichon cucumber
eggplant endive garlic jicama kale kohlrabi leek lettuce okra onion
parsnip pepper potato pumpkin radicchio radish raspberry rhubarb spinach
squash tomato turnip zucchini)

View File

@ -66,11 +66,12 @@ namespace :api do
assets,
"--out-dir public/dist",
"--public-url /dist",
# "--no-hmr",
"--hmr-hostname #{ENV.fetch("API_HOST")}",
"--hmr-port 3808",
# WHY ARE SOURCE MAPS DISABLED?
# https://github.com/parcel-bundler/parcel/issues/2599#issuecomment-459131481
# https://github.com/parcel-bundler/parcel/issues/2607
# TODO: Upgrade parcel when issue ^ is fixed.
"--no-source-maps",
].join(" ")
puts "=== Running: \n#{cli}"