mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 09:37:49 +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:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: dart-lang/setup-dart@v1
|
- uses: ./.github/util/initialize
|
||||||
- run: dart pub get
|
with: {github-token: "${{ github.token }}"}
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
run: dart run grinder pkg-chocolatey-deploy
|
run: dart run grinder pkg-chocolatey-deploy
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## 1.63.1
|
||||||
|
|
||||||
|
* No user-visible changes.
|
||||||
|
|
||||||
## 1.63.0
|
## 1.63.0
|
||||||
|
|
||||||
### JavaScript API
|
### JavaScript API
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## 7.1.1
|
||||||
|
|
||||||
|
* No user-visible changes.
|
||||||
|
|
||||||
## 7.1.0
|
## 7.1.0
|
||||||
|
|
||||||
* No user-visible changes.
|
* 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*
|
# 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
|
# version because it's a breaking change for anyone who's implementing the
|
||||||
# visitor interface(s).
|
# visitor interface(s).
|
||||||
version: 7.1.0
|
version: 7.1.1
|
||||||
description: Additional APIs for Dart Sass.
|
description: Additional APIs for Dart Sass.
|
||||||
homepage: https://github.com/sass/dart-sass
|
homepage: https://github.com/sass/dart-sass
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ environment:
|
|||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
sass: 1.63.0
|
sass: 1.63.1
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
dartdoc: ^5.0.0
|
dartdoc: ^5.0.0
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: sass
|
name: sass
|
||||||
version: 1.63.0
|
version: 1.63.1
|
||||||
description: A Sass implementation in Dart.
|
description: A Sass implementation in Dart.
|
||||||
homepage: https://github.com/sass/dart-sass
|
homepage: https://github.com/sass/dart-sass
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ void main(List<String> args) {
|
|||||||
pkg.executables.value = {"sass": "bin/sass.dart"};
|
pkg.executables.value = {"sass": "bin/sass.dart"};
|
||||||
pkg.chocolateyNuspec.value = _nuspec;
|
pkg.chocolateyNuspec.value = _nuspec;
|
||||||
pkg.homebrewRepo.value = "sass/homebrew-sass";
|
pkg.homebrewRepo.value = "sass/homebrew-sass";
|
||||||
pkg.homebrewFormula.value = "sass.rb";
|
pkg.homebrewFormula.value = "Formula/sass.rb";
|
||||||
pkg.jsRequires.value = [
|
pkg.jsRequires.value = [
|
||||||
pkg.JSRequire("immutable", target: pkg.JSRequireTarget.all),
|
pkg.JSRequire("immutable", target: pkg.JSRequireTarget.all),
|
||||||
pkg.JSRequire("chokidar", target: pkg.JSRequireTarget.cli),
|
pkg.JSRequire("chokidar", target: pkg.JSRequireTarget.cli),
|
||||||
|
Loading…
Reference in New Issue
Block a user