Skip to content
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
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,13 @@ jobs:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- uses: actions/setup-node@v2
with: {node-version: "${{ env.DEFAULT_NODE_VERSION }}"}
- uses: actions/setup-node@v6
with:
node-version: "${{ inputs.node-version }}"
check-latest: true
registry-url: 'https://registry.npmjs.org'
# npm trusted publisher infrastructure requires npm >=11.5.1
- run: npm install -g npm@latest
- name: Deploy
run: dart pub run grinder pkg-npm-deploy

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.5.4

* No user-visible changes.

## 2.5.3

* No user-visible changes.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sass_migrator
version: 2.5.3
version: 2.5.4
description: A tool for running migrations on Sass files
homepage: https://github.com/sass/migrator

Expand Down