Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Arias committed May 1, 2019
1 parent a50e263 commit d62140b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Meteor Google Cloud

[![Project Status: WIPInitial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
[![Project Status: ActiveThe project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

A command line tool for deploying Meteor applications on Google Cloud App Engine Flexible.

Expand Down
4 changes: 2 additions & 2 deletions dist/lib/validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ function validateSettings(filePath) {
function validateApp(filePath) {
var appFile;

_winston.default.info(`Validating app.yaml file (${filePath})`); // Ensure valid json exists
_winston.default.info(`Validating app.yml file (${filePath})`); // Ensure valid json exists


_winston.default.debug('check app yaml exists');

try {
appFile = _jsYaml.default.safeLoad(_fs.default.readFileSync(filePath));
} catch (error) {
throw new Error(`Could not read app.yaml file at '${filePath}'`);
throw new Error(`Could not read app.yml file at '${filePath}'`);
} // Define schema


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meteor-google-cloud",
"version": "0.9.0",
"version": "1.0.0",
"description": "Automate Meteor deployments on Google Cloud App Service Flexible",
"main": "dist/main.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ export function validateSettings(filePath) {
export function validateApp(filePath) {
let appFile;

winston.info(`Validating app.yaml file (${filePath})`);
winston.info(`Validating app.yml file (${filePath})`);

// Ensure valid json exists
winston.debug('check app yaml exists');
try {
appFile = yaml.safeLoad(fs.readFileSync(filePath));
} catch (error) {
throw new Error(`Could not read app.yaml file at '${filePath}'`);
throw new Error(`Could not read app.yml file at '${filePath}'`);
}

// Define schema
Expand Down

0 comments on commit d62140b

Please sign in to comment.