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: unsass/css
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.0
Choose a base ref
...
head repository: unsass/css
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.3.0
Choose a head ref
  • 10 commits
  • 12 files changed
  • 2 contributors

Commits on Dec 8, 2022

  1. Copy the full SHA
    02623b1 View commit details
  2. Copy the full SHA
    f917fde View commit details
  3. Copy the full SHA
    b87166a View commit details

Commits on Mar 6, 2023

  1. Copy the full SHA
    2133c72 View commit details
  2. Copy the full SHA
    8364b29 View commit details
  3. Copy the full SHA
    14f3eaa View commit details
  4. Copy the full SHA
    42ae23e View commit details
  5. Copy the full SHA
    cb1c14c View commit details
  6. Copy the full SHA
    4545905 View commit details
  7. Copy the full SHA
    b01d60c View commit details
Showing with 3,472 additions and 2,873 deletions.
  1. +1 −1 .gitattributes
  2. +1 −1 .github/dependabot.yml
  3. +14 −7 .github/workflows/node.js.yml
  4. +1 −0 .gitignore
  5. +13 −0 CHANGELOG.md
  6. +331 −0 __tests__/mixins.spec.scss
  7. +27 −0 __tests__/scss.spec.js
  8. +11 −0 jest.config.js
  9. +3,059 −2,478 package-lock.json
  10. +14 −11 package.json
  11. +0 −331 tests/mixins.spec.scss
  12. +0 −44 tests/scss.spec.js
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto
* text=auto eol=lf
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
assignees:
- "borisdamevin"
reviewers:
21 changes: 14 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -12,36 +12,43 @@ jobs:

strategy:
matrix:
node-version: [ 14.x, 16.x ]
node-version: [ 16.x, 18.x ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install Dependencies
run: npm ci --ignore-scripts
run: npm ci --ignore-scripts --no-audit

- name: Test
run: npm run test

- name: Test Reporter
uses: dorny/test-reporter@v1.6.0
with:
name: JEST Tests
path: junit.xml
reporter: jest-junit

publish:
runs-on: ubuntu-latest
needs: test
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm ci --ignore-scripts
run: npm ci --ignore-scripts --no-audit

- name: Release
run: npm run release
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Files
*.log
*.orig
junit.xml

## Folders
/.idea
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.3.0](https://github.com/unsass/css/compare/v2.2.0...v2.3.0) (2023-03-06)


### Features

* **deps:** bump to `sass` 1.58.3 ([8364b29](https://github.com/unsass/css/commit/8364b29bb8216b6fc5fd71ea988ab504883a733d))


### Build System

* **deps:** bump to `sass` 1.56.1 ([f917fde](https://github.com/unsass/css/commit/f917fde44126a2e78a55be694a55153baf4e99aa))
* **deps:** drop node 14 for node 16 ([02623b1](https://github.com/unsass/css/commit/02623b1646893e12aa928de7fc0c5d19849f70f3))

## [2.2.0](https://github.com/unsass/css/compare/v2.1.1...v2.2.0) (2022-09-21)


Loading