Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: css-modules/postcss-modules-local-by-default
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8c7f208f12d32d65a4233ffaf10253f538d85e9e
Choose a base ref
...
head repository: css-modules/postcss-modules-local-by-default
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ef87adb1199c90446b84e92aea3ed63936c07cfc
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 23, 2018

  1. chore(deps): update

    alexander-akait committed Nov 23, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    82e4865 View commit details
  2. chore(release): 2.0.0

    evilebottnawi authored Nov 23, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ef87adb View commit details
Showing with 2,532 additions and 14 deletions.
  1. +3 −2 .travis.yml
  2. +3 −2 CHANGELOG.md
  3. +13 −10 package.json
  4. +2,513 −0 yarn.lock
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: node_js
node_js:
- "4"
- "6"
- "node"
- "8"
- "10"
- "11"
script: npm run travis

after_success:
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,9 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]
## [2.0.0] - 2018-11-23
### Changed
- Nothing yet.
- Drop support `nodejs@4`.
- Update `postcss` version to `7`.

## [0.0.11] - 2015-07-19
### Fixed
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "postcss-modules-local-by-default",
"version": "1.2.0",
"version": "2.0.0",
"description": "A CSS Modules transform to make local scope the default",
"main": "src/index.js",
"engines": {
"node": ">= 6"
},
"keywords": [
"css-modules",
"postcss",
@@ -16,26 +20,25 @@
},
"dependencies": {
"css-selector-tokenizer": "^0.7.0",
"postcss": "^6.0.1"
"postcss": "^7.0.6"
},
"devDependencies": {
"chokidar-cli": "^1.0.1",
"codecov.io": "^0.1.2",
"coveralls": "^2.11.2",
"eslint": "^3.19.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"istanbul": "^0.4.5",
"tape": "^4.0.0"
},
"scripts": {
"lint": "eslint index.js test.js",
"pretest": "npm run lint",
"pretest": "yarn lint",
"test": "tape test.js",
"autotest": "chokidar index.js test.js -c 'npm test'",
"precover": "npm run lint",
"autotest": "chokidar index.js test.js -c 'yarn test'",
"precover": "yarn lint",
"cover": "istanbul cover test.js",
"travis": "npm run cover -- --report lcovonly",
"prepublish": "npm prune && npm test",
"publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish"
"travis": "yarn lint && yarn cover -- --report lcovonly",
"prepublish": "yarn test"
},
"files": [
"index.js"
Loading