@kalutskii/contract 1.0.1 → 1.0.2
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.
- package/dist/cli.entrypoint.js +3 -0
- package/package.json +1 -1
package/dist/cli.entrypoint.js
CHANGED
|
@@ -157,6 +157,9 @@ var renderConfigTemplate = (defaultConfig) => {
|
|
|
157
157
|
// }`;
|
|
158
158
|
return `import type { Config } from 'contract';
|
|
159
159
|
|
|
160
|
+
// Configuration for contract generation, do not edit this file if you are not sure what you are doing.
|
|
161
|
+
// More details about this custom contract library: https://github.com/kalutskii/contract#quick-start
|
|
162
|
+
|
|
160
163
|
const contractConfig: Config = {
|
|
161
164
|
app: '${defaultConfig.app}',
|
|
162
165
|
contracts: ${JSON.stringify(defaultConfig.contracts)},
|
package/package.json
CHANGED