@metaplex-foundation/kinobi 0.16.5 → 0.16.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
{% block main %}
|
|
4
4
|
|
|
5
5
|
{% for instruction in instructionsToExport | sort(false, false, 'name') %}
|
|
6
|
-
pub(crate) mod {{ instruction.name | snakeCase }};
|
|
6
|
+
pub(crate) mod r#{{ instruction.name | snakeCase }};
|
|
7
7
|
{% endfor %}
|
|
8
8
|
|
|
9
9
|
{% for instruction in instructionsToExport | sort(false, false, 'name') %}
|
|
10
|
-
pub use self::{{ instruction.name | snakeCase }}::*;
|
|
10
|
+
pub use self::r#{{ instruction.name | snakeCase }}::*;
|
|
11
11
|
{% endfor %}
|
|
12
12
|
|
|
13
13
|
{% endblock %}
|
package/package.json
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
{% block main %}
|
|
4
4
|
|
|
5
5
|
{% for instruction in instructionsToExport | sort(false, false, 'name') %}
|
|
6
|
-
pub(crate) mod {{ instruction.name | snakeCase }};
|
|
6
|
+
pub(crate) mod r#{{ instruction.name | snakeCase }};
|
|
7
7
|
{% endfor %}
|
|
8
8
|
|
|
9
9
|
{% for instruction in instructionsToExport | sort(false, false, 'name') %}
|
|
10
|
-
pub use self::{{ instruction.name | snakeCase }}::*;
|
|
10
|
+
pub use self::r#{{ instruction.name | snakeCase }}::*;
|
|
11
11
|
{% endfor %}
|
|
12
12
|
|
|
13
13
|
{% endblock %}
|