Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
add generate/transpile and npmignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
jsevedge committed May 5, 2020
1 parent 99dc416 commit 657803c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ check_content:
tags:
- cm-official-docker-executor

# generate/transpile code
generate_code:
stage: build
script:
- npm install
- npm run build-package
artifacts:
name: ${CI_COMMIT_REF_NAME}_generated_code
paths:
- dist
expire_in: 1 month
tags:
- cm-official-docker-executor

# build code documentation
code_docs:
stage: build
Expand Down
16 changes: 16 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Source directory
src/
# Tests directory
tests/
# Coverage directory
coverage/
# Code Documentation directory
code_docs/
# Local Documentation directory
docs/
# NYC Output directory
.nyc_output/
# Git Allowed File
.gitallowed
# CI File
.gitlab-ci.yml

0 comments on commit 657803c

Please sign in to comment.