You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/07/14 17:34:25 UTC

[airflow] branch main updated: airflow/www/package.json: Add name, version fields. (#25065)

This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 1fd59d61de airflow/www/package.json: Add name, version fields. (#25065)
1fd59d61de is described below

commit 1fd59d61decdc1d7e493eca80a629d02533a4ba0
Author: John Soo <js...@users.noreply.github.com>
AuthorDate: Thu Jul 14 10:34:07 2022 -0700

    airflow/www/package.json: Add name, version fields. (#25065)
    
    These fields are required according to:
    
    https://docs.npmjs.com/creating-a-package-json-file#required-name-and-version-fields
---
 airflow/www/package.json | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/airflow/www/package.json b/airflow/www/package.json
index f871dce5de..27509de691 100644
--- a/airflow/www/package.json
+++ b/airflow/www/package.json
@@ -1,4 +1,6 @@
 {
+  "name": "airflow-www",
+  "version": "1.0.0",
   "description": "Apache Airflow is a platform to programmatically author, schedule and monitor workflows.",
   "scripts": {
     "test": "jest",