Skip to content
Snippets Groups Projects
Commit 3f92b55d authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

use GitLab npm registry

parent 2249241f
No related branches found
No related tags found
1 merge request!16GitLab npm registry
Pipeline #21193 passed
variables:
GITLAB_TOKEN: '${CI_JOB_TOKEN}'
stages:
- test
- publish
......@@ -73,8 +76,8 @@ Publish npm:
only:
- tags@ghsc/nshmp/nshmp-template
before_script:
- echo '//code.usgs.gov/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}' >> .npmrc
- npm ci
- npm run npm-cli-login -- -u ${NPM_USER} -p ${NPM_PASSWORD} -e ${NPM_EMAIL}
- git config user.email "${GITLAB_USER_EMAIL}"
- git config user.name "${GITLAB_USER_NAME}"
script:
......
.npmrc 0 → 100644
@ghsc:registry=https://code.usgs.gov/api/v4/packages/npm/
#!/bin/bash
# Immediately exit if script fails
set -e
set -e;
# Library name to build
LIB=nshmp-template
LIB=nshmp-template;
# Library assets directory
LIB_ASSETS_DIR=projects/${LIB}/src/assets
LIB_ASSETS_DIR=projects/${LIB}/src/assets;
# Distribution directory
DIST_DIR=dist/${LIB}
DIST_DIR=dist/${LIB};
# SCSS directory
SCSS_DIR=projects/${LIB}/src/scss
SCSS_DIR=projects/${LIB}/src/scss;
# Build library
npm run ng build ${LIB} -- --prod
npm run ng build ${LIB} -- --prod;
# Copy assets from library to dist
cp -r ${LIB_ASSETS_DIR} ${DIST_DIR}/.
cp -r ${LIB_ASSETS_DIR} ${DIST_DIR}/.;
# Copy SCSS from src to dist
cp -r ${SCSS_DIR} ${DIST_DIR}/.
cp -r ${SCSS_DIR} ${DIST_DIR}/.;
# Copy .npmrc file
cp .npmrc dist/.;
This diff is collapsed.
......@@ -3,7 +3,6 @@
"version": "0.0.2",
"scripts": {
"ng": "ng",
"npm-cli-login": "npm-cli-login",
"start": "ng serve example",
"start:prod": "http-server -a localhost -p 4200 -c-1 dist/example/",
"analyze": "webpack-bundle-analyzer dist/example/stats.json",
......@@ -60,7 +59,6 @@
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^10.0.0",
"npm-cli-login": "^0.1.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"protractor": "~7.0.0",
......@@ -76,5 +74,8 @@
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
}
},
"publishConfig": {
"@ghsc:registry": "https://code.usgs.gov/api/v4/projects/1416/packages/npm/"
}
}
{
"name": "@nshmp/nshmp-template",
"name": "@ghsc/nshmp-template",
"version": "0.3.12",
"lockfileVersion": 1
}
{
"name": "@nshmp/nshmp-template",
"name": "@ghsc/nshmp-template",
"version": "0.3.12",
"peerDependencies": {
"@angular/common": "^7.2.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment