2.2.1 • Published 5 years ago

@airyrooms/catela v2.2.1

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
5 years ago

Catela is a JavaScript framework based on React and Redux pattern.

changelog

v2.1.0 - 2018-11-08

  • (Optional) Add storing variables capability in __PROJECT__ variable on setup.
// To setup
{
    ...
    variables: {
      FOO: getProjectFoo(),
      BAR: getProjectBar(),
      // ...more variables
    }
}

// To get
__PROJECT__.variables['FOO'] // get value stored in FOO
__PROJECT__.variables['BAR'] // get value stored in BAR
  • Moved react and react-dom to dev and peer dependencies (prevent this)

v1.23

  • Restructure for asset serving support for more flexible usage now use
{
    assetHost: 'https://cloudfront.123123.net' // as the CDN url,
    artifactPath: '/artifact'// as the bundled assets path (S3 folder path),
    assetPath: '/' // as the images and other assets path (S3 images path [we suggest to use root S3 dir]),
    useBuildID: true|false // if you want to use build ID for long term caching (required if using CDN)  
}
  • Now you can use global variable called __ARTIFACT_PATH__ to access the proper artifact path. add this code to main page
callback(null, {
    ...,
    ARTIFACT_PATH: __ARTIFACT_PATH__
})

and use this on the main.html

<script type="text/javascript" src="${ARTIFACT_PATH}/commons.js"></script>
  • Upload to S3 script example, run this script after ./docker-build
#!/bin/bash
set -e

export APPLICATION_NAME=$1
export ENVIRONMENT=$2

if [ "$ENVIRONMENT" == "dev" ]
  then
    export TARGET_ENV="development"
elif [ "$ENVIRONMENT" == "stg" ]
  then
    export TARGET_ENV="staging"
elif [ "$ENVIRONMENT" == "prod" ]
  then
    export TARGET_ENV="production"
else
  export TARGET_ENV="development"
fi

# Get bucket's folder name
if [ "$APPLICATION_NAME" == "airyrooms-web" ]
    then
    export APP_NAME="airy-web"
    else export APP_NAME="airy-mobile-web"
fi

export BUILDDIR="applications/$APPLICATION_NAME/build/$TARGET_ENV"

export BUILD_ID=$( cat $BUILDDIR/BUILD_ID )

# Upload S3 CF
export TARGET_ASSETS_DIR="$BUILDDIR/client"
export TARGET_ARTIFACTS_DIR="$TARGET_ASSETS_DIR/$BUILD_ID"

export S3_ASSETS_DIR="s3://airy-assets/$APP_NAME"
export S3_ARTIFACTS_DIR="s3://airy-assets/$APP_NAME/assets/$BUILD_ID"

# if [ "$ENVIRONMENT" == "prod" ]
if [ "$ENVIRONMENT" == "stg" ]
  then
    echo "=================================================================================="
    echo ""
    echo "[$APPLICATION_NAME - $TARGET_ENV]"
    echo "Uploading Artifacts from [$TARGET_ARTIFACTS_DIR] to [$S3_ARTIFACTS_DIR]"
    echo ""
    echo "=================================================================================="
    # aws s3 sync $TARGET_ARTIFACTS_DIR $S3_ARTIFACTS_DIR --recursive --exclude "*" --include "main.js" --include "commons.js" --include "styles.css" --include "*.map" --include "webpack-assets.json" --acl public-read
    aws s3 sync $TARGET_ARTIFACTS_DIR $S3_ARTIFACTS_DIR --include "*" --acl public-read

    echo "=================================================================================="
    echo ""
    echo "[$APPLICATION_NAME - $TARGET_ENV]"
    echo "Uploading Assets from [$TARGET_ASSETS_DIR] to [$S3_ASSETS_DIR]"
    echo ""
    echo "=================================================================================="
    aws s3 sync $TARGET_ASSETS_DIR $S3_ASSETS_DIR --exclude "*.js" --exclude "*.css" --exclude "*.json" --exclude "*.map" --acl public-read
fi

v1.22

  • added CDN prefix and logger options support to use fluentd, winston, or fluentd & winston.
  • url-loader now use original image name for easier S3 reusability
  • If your app is already using kubernetes, in order to use CDN support, please remove :port from host options and set forceHttps on server to be false (due to redirecting envoy and pods issue) - Don't forget to add on your main.html the prefix to the file you want to put on CDN, such as main.js
2.2.1

5 years ago

2.2.0

5 years ago

2.1.0

5 years ago

2.0.1-dev.A

5 years ago

2.0.0-canary

6 years ago

2.0.0-dev.E

6 years ago

2.0.0-dev.D

6 years ago

2.0.0-dev.C

6 years ago

2.0.0-dev.B

6 years ago

2.0.0-dev.A

6 years ago

1.0.23

6 years ago

1.0.2-2.dev-G

6 years ago

1.0.2-2.dev-F

6 years ago

1.0.2-2.dev-E

6 years ago

1.0.2-2.dev-D

6 years ago

1.0.2-2.dev-C

6 years ago

1.0.2-2.dev-B

6 years ago

1.0.2-2.dev-A

6 years ago

1.0.22

6 years ago

1.0.2-1.dev-C

6 years ago

1.0.2-1.dev-B

6 years ago

1.0.2-1.dev-A

6 years ago

1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18-dev-g

6 years ago

1.0.18-dev-f

6 years ago

1.0.18-dev-e

6 years ago

1.0.18-dev-d

6 years ago

1.0.18-dev-c

6 years ago

1.0.18-dev-b

6 years ago

1.0.17-dev-b

6 years ago

1.0.17-dev-a

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15-wt

6 years ago

1.0.15

6 years ago

1.0.14-dev-a

6 years ago

1.0.14

6 years ago

1.0.13-dev-a

6 years ago

1.0.13

6 years ago

1.0.12-dev-b

6 years ago

1.0.12-dev-a

6 years ago

1.0.12

6 years ago

1.0.11-dev-a

6 years ago

1.0.10-dev-a

6 years ago

1.0.10

6 years ago

1.0.9-dev-e

6 years ago

1.0.9-dev-d

6 years ago

1.0.9-dev-c

6 years ago

1.0.9-dev-b

6 years ago

1.0.9-dev-a

6 years ago

1.0.9-dev

6 years ago

1.0.9-a

6 years ago

1.0.9

6 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6-c

7 years ago

1.0.5-hf-d

7 years ago

1.0.6

7 years ago

1.0.5-hf-c

7 years ago

1.0.5-hf-b

7 years ago

1.0.5-hf-a

7 years ago

1.0.5

7 years ago

1.0.4-h

7 years ago

1.0.4-g

7 years ago

1.0.4-f

7 years ago

1.0.4-e-beta

7 years ago

1.0.4-d

7 years ago

1.0.4-c

7 years ago

1.0.4-b

7 years ago

1.0.4-a

7 years ago

1.0.4

7 years ago

1.0.0

7 years ago