Giter Club home page Giter Club logo

postcss-load-options's People

Contributors

greenkeeper[bot] avatar michael-ciniawsky avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

postcss-load-options's Issues

An in-range update of postcss is breaking the build 🚨

Version 6.0.12 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.11
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.12
  • Don’t copy * hack to declaration indent.
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.14 of postcss was just published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.13
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.14
  • Fix TypeScript definitions (by @jedmao).
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 5.2.6 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 5.2.5
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • coverage/coveralls Coverage pending from Coveralls.io Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 5.2.6
  • Fix postcss.vendor for values with spaces (by @gucong3000).
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of jsdoc-to-markdown is breaking the build 🚨

Version 3.0.4 of jsdoc-to-markdown was just published.

Branch Build failing 🚨
Dependency jsdoc-to-markdown
Current Version 3.0.3
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

jsdoc-to-markdown is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 5.2.12 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 5.2.11
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • coverage/coveralls Coverage pending from Coveralls.io Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 5.2.12
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

postcss-load-options overwrites options in-place

Problem

postcss-load-options overwrites the options object it receives
in-place, which causes a crash when the given object is actually memoized.

Details

When postcss-load-options is invoked for processing a second file, node
throws an assertion as require is called with a non-string argument.

That specific problem may already be fixed by #18, but the presence of this
other bug also triggers it even if the user gives a string to be required.

Error Logs

{ AssertionError: path must be a string
    at Module.require (module.js:497:3)
    at require (internal/module.js:20:19)
    at options (.../node_modules/postcss-load-options/lib/options.js:17:22)
    at .../node_modules/postcss-load-config/index.js:68:18
  name: 'AssertionError',
  actual: false,
  expected: true,
  operator: '==',
  message: 'path must be a string',
  generatedMessage: false }

Issue [ Code ]

postcss.config.js:

const memoize = require('memoizee')
const plugins = require('./postcss.plugins.js')

const config = memoize((production, parser) => {
  return Object.assign({
    plugins: plugins(production, parser)
  }, parser != null ? { parser } : {})
}, { primitive: true, length: false })

// const sugarss = require('sugarss')

module.exports = function postcssConfig (ctx) {
  return config(
    ctx.env === 'production',
    // 'sugarss' until https://github.com/michael-ciniawsky/postcss-load-options/pull/18 is released
    ctx.webpack.resourcePath.endsWith('.sss') ? 'sugarss' : null
  )
}

config, when called, will return the same object for the same arguments, so modifying the object in postcss-load-options contaminates the memoization cache, replacing options.parser with the result of require(options.parser), which breaks the workaround :)

I can work around it by returning a new copy of the object every time, but adding workarounds to make workarounds work is not optimal.

An in-range update of nyc is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 11.6.0 of nyc was just published.

Branch Build failing 🚨
Dependency nyc
Current Version 11.5.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

nyc is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 4 commits.

  • dd372f5 chore(release): 11.6.0
  • c6b30ba feat: allow usage of ignoreClassMethods from istanbul (#785)
  • 2d51562 fix: update to yargs version that allows extending configs with no extension (#790)
  • b4032ce fix: removes unused split-lines dependency. (#787)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.22 of postcss was just published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.21
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.22
  • Fix Node#prev and Node#next on missed parent.
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.15 of postcss was just published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.14
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Release Notes 6.0.15
  • Add warning about missed from option on process().then() call.
  • Add IE 10 support.
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of jsdoc-to-markdown is breaking the build 🚨

Version 3.0.1 of jsdoc-to-markdown was just published.

Branch Build failing 🚨
Dependency jsdoc-to-markdown
Current Version 3.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

jsdoc-to-markdown is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 5 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 5.2.8 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 5.2.7
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • coverage/coveralls Coverage pending from Coveralls.io Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 5.2.8
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.9 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.8
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.9
  • Improve error message for plugin with old PostCSS (by @igoradamenko).
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of cosmiconfig is breaking the build 🚨

Version 2.2.0 of cosmiconfig just got published.

Branch Build failing 🚨
Dependency cosmiconfig
Current Version 2.1.3
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

cosmiconfig is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 6 commits.

  • bfa7721 Prepare 2.2.0
  • b572915 Bump package dependencies (#70)
  • 9d2ae4e configPath cleanup
  • e4baf6d Fix --config and configPath option (#68)
  • 216797e Minor tweaks for sync docs
  • bed5dc0 feat: Add option to load config in sync mode (#67)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of nyc is breaking the build 🚨

Version 11.7.1 of nyc was just published.

Branch Build failing 🚨
Dependency nyc
Current Version 11.7.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

nyc is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 2 commits.

  • 5e40c7c chore(release): 11.7.1
  • 5c0adb5 chore: explicit upgrade of istanbul-reports (#816)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.6 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.5
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.6
  • Fix end position in at-rule without semicolon (by @hzlmn).
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 6.0.21 of postcss was just published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.20
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.21
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of coveralls is breaking the build 🚨

Version 2.11.16 of coveralls just got published.

Branch Build failing 🚨
Dependency coveralls
Current Version 2.11.15
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As coveralls is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • coverage/coveralls Coverage pending from Coveralls.io Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 13 commits .

  • 8dfcfd6 version bump
  • 4bc93ac Merge branch 'master' of github.com:nickmerwin/node-coveralls
  • 671acca removed codeship badge
  • f390392 Merge pull request #152 from ndaidong/master
  • de968b0 Merge pull request #147 from hyperlink/update-request-dep
  • 72a4046 Merge pull request #154 from a0viedo/patch-1
  • 87b27f7 Merge pull request #142 from Hirse/feature/travis-pr
  • 3edbecb Merge pull request #155 from kasperlewau/master
  • d117e3d reenable drone
  • dd230f6 don't hardcode minor version
  • cc0882d Update outdate dependencies
  • 99edf1a Fix node-uuid deprecation by updating request dependency
  • f94b647 Get PR number from TRAVIS

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of coveralls is breaking the build 🚨

Version 2.13.2 of coveralls just got published.

Branch Build failing 🚨
Dependency coveralls
Current Version 2.13.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As coveralls is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 3 commits.

  • 5ebe57f bump version
  • 428780c Expand allowed dependency versions to all API compatible versions (#172)
  • eb1b723 Update Mocha link (#169)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of jsdoc-to-markdown is breaking the build 🚨

Version 3.0.3 of jsdoc-to-markdown was just published.

Branch Build failing 🚨
Dependency jsdoc-to-markdown
Current Version 3.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

jsdoc-to-markdown is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of nyc is breaking the build 🚨

Version 11.3.0 of nyc was just published.

Branch Build failing 🚨
Dependency nyc
Current Version 11.2.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

nyc is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 12 commits.

  • d85118c chore(release): 11.3.0
  • 7792733 chore: explicitly update istanbul dependencies (#698)
  • 222a3d0 chore: slight difference in pinning logic, based on @ljharb's advice
  • f04b7a9 feat: add option to hook vm.runInContext (#680)
  • cdfdff3 feat: add --exclude-after-remap option for users who pre-instrument their codebase (#697)
  • a413f6a chore: upgrade to yargs 10 (#694)
  • 10125aa docs: fix reporters link
  • f5089ca docs: added examples of coverage reports (#656)
  • af281e7 chore: update spawn-wrap to 1.4.0 (#692)
  • a685f7c docs: missing options prefix -- in front of check-coverage (#695)
  • f31d7a6 feat: allow instrument-only to produce sourcemaps (#674)
  • 425c0fd chore: ignore package-lock.json (#683)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of nyc is breaking the build 🚨

Version 11.7.2 of nyc was just published.

Branch Build failing 🚨
Dependency nyc
Current Version 11.7.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

nyc is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 6 commits.

  • 4bdd42c chore(release): 11.7.2
  • bd77538 test: cache clear was breaking build (#835)
  • a522dd9 chore: add Node.js 8 and 10, remove Node.js 4 (#829)
  • 99576fb chore: clone only last commit (#831)
  • ef550bf docs: added "temp-directory" to configuring nyc (#828)
  • d76744a chore: update all the things (#832)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 6.0.20 of postcss was just published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.19
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 6.0.20
  • Better error message on null as input CSS.
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.