mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
Fix deploy configuration (#1994)
This commit is contained in:
parent
c3ed547932
commit
d82654bc3a
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -572,8 +572,8 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: dart-lang/setup-dart@v1
|
||||
- run: dart pub get
|
||||
- uses: ./.github/util/initialize
|
||||
with: {github-token: "${{ github.token }}"}
|
||||
|
||||
- name: Deploy
|
||||
run: dart run grinder pkg-chocolatey-deploy
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 1.63.1
|
||||
|
||||
* No user-visible changes.
|
||||
|
||||
## 1.63.0
|
||||
|
||||
### JavaScript API
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 7.1.1
|
||||
|
||||
* No user-visible changes.
|
||||
|
||||
## 7.1.0
|
||||
|
||||
* No user-visible changes.
|
||||
|
@ -2,7 +2,7 @@ name: sass_api
|
||||
# Note: Every time we add a new Sass AST node, we need to bump the *major*
|
||||
# version because it's a breaking change for anyone who's implementing the
|
||||
# visitor interface(s).
|
||||
version: 7.1.0
|
||||
version: 7.1.1
|
||||
description: Additional APIs for Dart Sass.
|
||||
homepage: https://github.com/sass/dart-sass
|
||||
|
||||
@ -10,7 +10,7 @@ environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
||||
dependencies:
|
||||
sass: 1.63.0
|
||||
sass: 1.63.1
|
||||
|
||||
dev_dependencies:
|
||||
dartdoc: ^5.0.0
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: sass
|
||||
version: 1.63.0
|
||||
version: 1.63.1
|
||||
description: A Sass implementation in Dart.
|
||||
homepage: https://github.com/sass/dart-sass
|
||||
|
||||
|
@ -28,7 +28,7 @@ void main(List<String> args) {
|
||||
pkg.executables.value = {"sass": "bin/sass.dart"};
|
||||
pkg.chocolateyNuspec.value = _nuspec;
|
||||
pkg.homebrewRepo.value = "sass/homebrew-sass";
|
||||
pkg.homebrewFormula.value = "sass.rb";
|
||||
pkg.homebrewFormula.value = "Formula/sass.rb";
|
||||
pkg.jsRequires.value = [
|
||||
pkg.JSRequire("immutable", target: pkg.JSRequireTarget.all),
|
||||
pkg.JSRequire("chokidar", target: pkg.JSRequireTarget.cli),
|
||||
|
Loading…
Reference in New Issue
Block a user