Skip to content

Commit

Permalink
Merge 4576239 into ea24ae0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Oct 29, 2021
2 parents ea24ae0 + 4576239 commit 31f2d03
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,5 @@ src/assets/tinymce/
!src/assets/icons/feather/chevron-right.svg

.wvr-ud/static-assets/styles.css

.verdaccio
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,21 @@
"build:static-docs": "npm run test:audit && npm run build:static-setup && npm run build:docs-usage && npm run build:docs-development",
"build:static-reports": "npm run build:static-setup && npm run test:coverage",
"build:static-production": "npm run build:static && node scripts/build-wvr-components-configuration.js defaults-ci-overrides.env",
"clean": "npm run clean:dist && npm run clean:static",
"clean": "npm run clean:dist && npm run clean:static && npm run clean:npm-local",
"clean:dist": "rimraf dist",
"clean:static": "rimraf static",
"clean:npm-local": "rimraf .verdaccio",
"publish:docker": "node scripts/docker-push.js",
"publish:npm": "npm run build && node scripts/build-publish.js $1",
"publish:npm-next": "npm run publish:npm next",
"publish:npm-local": "npm run publish:npm next local",
"lint": "ng lint",
"ng": "ng",
"start": "node scripts/build-wvr-components-style.js && node scripts/build-wvr-components-configuration.js defaults-dev-overrides.env && ng serve --port 4200",
"start:dist": "node scripts/build-wvr-components-style.js && node scripts/build-wvr-components-configuration.js defaults-dist-overrides.env && node scripts/serve-dist.js",
"start:static": "node scripts/build-wvr-components-style.js && node scripts/build-wvr-components-configuration.js defaults-static-overrides.env && static-server static -p 8081",
"start:docker": "node scripts/build-wvr-components-style.js && node scripts/start-docker.js",
"start:npm-local": "verdaccio --listen localhost:4873 --config ./verdaccio-config.yaml",
"test": "npm run test:unit && npm run test:e2e",
"test:audit": "rimraf .lighthouseci && lhci autorun --upload.target=temporary-public-storage --config=./lighthouserc.json && node scripts/build-wvr-components-lighthouse-badges.js",
"test:e2e": "ng e2e",
Expand Down Expand Up @@ -128,6 +131,7 @@
"static-server": "^2.2.1",
"ts-node": "~10.2.1",
"tslint": "~6.1.3",
"typescript": "~4.3.5"
"typescript": "~4.3.5",
"verdaccio": "^5.2.0"
}
}
3 changes: 2 additions & 1 deletion scripts/build-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const angularCli = require('@angular/cli');
const elementsPath = 'dist/wvr-elements';

const next = process.argv[2] ? '--tag next' : '';
const registry = process.argv[3] ? '--registry http://localhost:4873' : '';

angularCli.default({
cliArgs: ['b', '--project=wvr-elements'],
Expand All @@ -16,7 +17,7 @@ angularCli.default({
fs.copySync('scripts', `${elementsPath}/scripts`);
fs.copySync('.wvr-ud', `${elementsPath}/.wvr-ud`);

shell.exec(`npm publish ${elementsPath}/ ${next}`);
shell.exec(`npm ${registry} publish ${elementsPath}/ ${next}`);

shell.exit();
});
37 changes: 37 additions & 0 deletions verdaccio-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Look here for more config file examples:
# https://github.com/verdaccio/verdaccio/tree/master/conf

# path to a directory with all packages
storage: .verdaccio/storage
# path to a directory with plugins to include
plugins: .verdaccio/plugins

web:
title: Verdaccio - Weaver Components

# a list of other known repositories we can talk to
uplinks:
npmjs:
url: https://registry.npmjs.org/

packages:
'@wvr/*':
# and three keywords: "$all", "$anonymous", "$authenticated"
access: $all
publish: $all
unpublish: $all

'**':
access: $all

# if package is not available locally, proxy requests to 'npmjs' registry
proxy: npmjs

server:
keepAliveTimeout: 60

middlewares:
audit:
enabled: true

logs: { type: stdout, format: pretty, level: http }

0 comments on commit 31f2d03

Please sign in to comment.