view package.json @ 7245:6c3bb9a845d7

less: generate map files when building style.css with 'npm run less' The map files allow web development tools ("Firebug" style) to show the .less and .css source instead of the generated style.css . The generated style.css will get a trailing comment with a reference to kallithea/public/css/style.css.map . It will not have any impact on runtime.
author domruf <dominikruf@gmail.com>
date Wed, 25 Oct 2017 19:19:58 +0200
parents 1969f7dfb6b0
children b66725ba01ed
line wrap: on
line source

{
  "name": "kallithea",
  "private": true,
  "dependencies": {
    "bootstrap": "3.3.7"
  },
  "devDependencies": {
    "less": "~2.7",
    "less-plugin-clean-css": "~1.5"
  },
  "scripts": {
    "less": "lessc --relative-urls --source-map --source-map-less-inline kallithea/public/less/main.less kallithea/public/css/style.css"
  }
}