We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32eeace + 22f17c3 commit 993304cCopy full SHA for 993304c
lib/src/nstack_builder.dart
@@ -16,6 +16,9 @@ class NstackBuilder implements Builder {
16
17
@override
18
FutureOr<void> build(BuildStep buildStep) async {
19
+ if (!buildStep.inputId.toString().contains('nstack.json')) {
20
+ return;
21
+ }
22
/// Read the input source and parse it as JSON.
23
final AssetId outputId = buildStep.inputId.changeExtension('.dart');
24
final StringBuffer output = StringBuffer();
pubspec.yaml
@@ -1,6 +1,6 @@
1
name: nstack
2
description: Nstack plugin for Flutter.
3
-version: 0.2.0
+version: 0.2.1
4
author: Nodes Agency
5
homepage: https://github.com/nstack-io/flutter-sdk
6
0 commit comments