UNPKG

@schemifyjs/core

Version:

Core module of the SchemifyJS CLI. Provides reusable functions such as scaffolding, template handling, and general utilities.

19 lines (18 loc) 786 B
// export const SCHEMIFY_CORE_VERSIONS = { // '@schemifyjs/cli': '^0.1.0', // '@schemifyjs/core': '^0.1.0', // '@schemifyjs/types': '^0.1.0', // '@schemifyjs/schematics': '^0.1.0' // } // export const SCHEMIFY_CORE_VERSIONS = { // '@schemifyjs/cli': '>=0.1.0 <0.2.0', // Última 0.1.x // '@schemifyjs/core': '>=0.1.0 <0.2.0', // Última 0.1.x // '@schemifyjs/types': '>=0.1.0 <0.2.0', // Última 0.1.x // '@schemifyjs/schematics': '>=0.1.0 <0.2.0' // Última 0.1.x // } export const SCHEMIFY_CORE_VERSIONS = { '@schemifyjs/cli': '~0.1.0', // Equivale a >=0.1.0 <0.2.0 '@schemifyjs/core': '~0.1.0', // Equivale a >=0.1.0 <0.2.0 '@schemifyjs/types': '~0.1.0', // Equivale a >=0.1.0 <0.2.0 '@schemifyjs/schematics': '~0.1.0' // Equivale a >=0.1.0 <0.2.0 };