https://github.com/angular/angular
Raw File
Tip revision: 7f8d6c1066651022a7d774784d62b97990fb72c6 authored by Matias Niemelä on 29 August 2018, 04:39:18 UTC
release: cut the v6.1.5 release
Tip revision: 7f8d6c1
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