-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Pubspec_overrides support added
- Loading branch information
1 parent
0b05a18
commit c3f5c7c
Showing
32 changed files
with
712 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "pubspec_manager", | ||
"request": "launch", | ||
"type": "dart", | ||
"program": "bin/manage.dart", | ||
"args": [ | ||
"manage", | ||
"-f", | ||
"test", | ||
"-b", | ||
"no-pub-get" | ||
] | ||
}, | ||
{ | ||
"name": "example", | ||
"cwd": "example", | ||
"request": "launch", | ||
"type": "dart" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,36 @@ | ||
name: pubm | ||
description: A Dart command line tool to help with managing pubspec dependencies. | ||
version: 0.1.0 | ||
version: 0.0.1-beta | ||
homepage: https://github.com/kushalmahapatro/pubspec_manager | ||
repository: https://github.com/kushalmahapatro/pubspec_manager | ||
homepage: https://github.com/kushalmahapatro/pubspec_manager | ||
topics: | ||
- pubspec | ||
- pubspec-manager | ||
- pubspec-splitter | ||
- pubspec-updater | ||
- pubspec-dependency-manager | ||
|
||
|
||
environment: | ||
sdk: ^3.0.0 | ||
|
||
dependencies: | ||
# normal dependencies | ||
args: ^2.4.2 | ||
cli_util: ^0.4.0 | ||
collection: ^1.17.1 | ||
cli_util: ^0.4.1 | ||
collection: ^1.18.0 | ||
cupertino_icons: ^1.0.2 | ||
equatable: ^2.0.5 | ||
get_it: ^7.2.0 | ||
get_it: ^7.6.7 | ||
json2yaml: ^3.0.1 | ||
path: ^1.8.0 | ||
path: ^1.9.0 | ||
yaml: ^3.1.2 | ||
|
||
dev_dependencies: | ||
# normal dependencies | ||
lints: ^2.1.1 | ||
test: ^1.24.3 | ||
|
||
|
||
flutter: | ||
uses-material-design: true | ||
generate: true | ||
|
||
topics: | ||
- pubspec | ||
- pubspec-manager | ||
- pubspec-splitter | ||
- pubspec-updater | ||
- pubspec-dependency-manager | ||
executables: | ||
pubm: manage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
dependency_overrides: | ||
# normal dependencies | ||
args: ^2.4.1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: pubm | ||
description: prod version of pubspec.yaml | ||
version: 0.0.1-dev | ||
|
||
environment: | ||
sdk: ^3.0.0 | ||
|
||
dependencies: | ||
# path related dependencies | ||
example_dependency: | ||
path: example/dependency | ||
# normal dependencies | ||
cupertino_icons: ^1.0.2 | ||
|
||
flutter: | ||
uses-material-design: true | ||
generate: true | ||
fonts: | ||
- family: font | ||
fonts: | ||
- asset: dev/font2/700.ttf | ||
weight: 700 | ||
- asset: dev/font2/600.ttf | ||
weight: 600 | ||
- asset: dev/font2/500.ttf | ||
weight: 500 | ||
- asset: dev/font2/400.ttf | ||
weight: 400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
dependency_overrides: | ||
# normal dependencies | ||
flutter_lints: ^9.0.0 | ||
unwanted_dependency: ^0.0.1-override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: pubm | ||
description: prod version of pubspec.yaml | ||
version: 0.0.1-dev | ||
|
||
environment: | ||
sdk: ^3.0.0 | ||
|
||
dependencies: | ||
# path related dependencies | ||
example_dependency: | ||
path: example/dependency | ||
# normal dependencies | ||
cupertino_icons: ^1.0.2 | ||
|
||
flutter: | ||
uses-material-design: true | ||
generate: true | ||
fonts: | ||
- family: font | ||
fonts: | ||
- asset: dev/font2/700.ttf | ||
weight: 700 | ||
- asset: dev/font2/600.ttf | ||
weight: 600 | ||
- asset: dev/font2/500.ttf | ||
weight: 500 | ||
- asset: dev/font2/400.ttf | ||
weight: 400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
dependency_overrides: | ||
# normal dependencies | ||
flutter_lints: ^9.0.0 | ||
unwanted_dependency: ^0.0.1-override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ remove: | |
|
||
flutter: | ||
assets: | ||
- assets/dev/ | ||
- assets/prod/ | ||
|
||
fonts: | ||
- family: font1 | ||
- family: font1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.