mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-10 15:50:26 -07:00
chore: install cssbundling rails and set up compilation
This commit is contained in:
parent
09ab4d214e
commit
99ef1cb2c8
4670 changed files with 393937 additions and 25 deletions
15
spec/dummy/node_modules/semver/internal/parse-options.js
generated
vendored
Normal file
15
spec/dummy/node_modules/semver/internal/parse-options.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// parse out just the options we care about
|
||||
const looseOption = Object.freeze({ loose: true })
|
||||
const emptyOpts = Object.freeze({ })
|
||||
const parseOptions = options => {
|
||||
if (!options) {
|
||||
return emptyOpts
|
||||
}
|
||||
|
||||
if (typeof options !== 'object') {
|
||||
return looseOption
|
||||
}
|
||||
|
||||
return options
|
||||
}
|
||||
module.exports = parseOptions
|
||||
Loading…
Add table
Add a link
Reference in a new issue