https://github.com/angular/angular
Raw File
Tip revision: 79fb9d449c0fab9bdb5886f09d4fc9cd52f89318 authored by George Kalpakas on 04 February 2019, 14:45:45 UTC
build(docs-infra): use pinned dependencies when possible in `ng-packages-installer` (#28510)
Tip revision: 79fb9d4
generateZips.js
const ExampleZipper = require('./exampleZipper');
const path = require('canonical-path');

const EXAMPLES_PATH = path.join(__dirname, '../../content/examples');
const ZIPS_PATH = path.join(__dirname, '../../src/generated/zips');

new ExampleZipper(EXAMPLES_PATH, ZIPS_PATH);
back to top