Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

[NO JIRA]: Clean up and remove cycle dependency #56

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
npm-debug.log
*.css
.idea
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
- Remove dependency of backpack to break cycle dependency
- Remove usage of sassFunctions as this is no longer needed after release of Backpack v31

## 1.0.0

**Breaking:**
- Support Node 18, drop support for older versions.
Expand Down
3 changes: 0 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ const sass = require('node-sass');
const ora = require('ora');
const { argv } = require('yargs');

const functions = require('@skyscanner/backpack-web/bpk-mixins/sass-functions');

const importer = require('./importer');

const getSassFiles = () =>
Expand Down Expand Up @@ -124,7 +122,6 @@ const worker = () =>
{
file,
importer,
functions,
outputStyle: 'compressed',
},
(error, result) => {
Expand Down
Loading