Comparing version 0.8.1 to 0.8.2
@@ -104,2 +104,5 @@ "use strict"; | ||
return __awaiter(this, void 0, void 0, function* () { | ||
let warning = "WARN: `neon new` is deprecated. To create a new project use `npm init neon my-project`."; | ||
let banner = "".padStart(warning.length + 4, "#"); | ||
console.warn(`${banner}\n# ${warning} #\n${banner}\n`); | ||
let its = validateName(name); | ||
@@ -106,0 +109,0 @@ if (!its.validForNewPackages) { |
{ | ||
"name": "neon-cli", | ||
"version": "0.8.1", | ||
"version": "0.8.2", | ||
"description": "Build and load native Rust/Neon modules.", | ||
@@ -5,0 +5,0 @@ "author": "Dave Herman <david.herman@gmail.com>", |
@@ -102,2 +102,7 @@ import { mkdirSync, writeFileSync, promises as fsPromises } from 'fs'; | ||
export default async function wizard(pwd: string, name: string, neon: string | null, features: string | null, noDefaultFeatures: boolean) { | ||
let warning = "WARN: `neon new` is deprecated. To create a new project use `npm init neon my-project`."; | ||
let banner = "".padStart(warning.length + 4, "#"); | ||
console.warn(`${banner}\n# ${warning} #\n${banner}\n`); | ||
let its = validateName(name); | ||
@@ -104,0 +109,0 @@ if (!its.validForNewPackages) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
108775
2419