summaryrefslogtreecommitdiffstats
path: root/toolkit/components/normandy/actions/schemas/export_json.js
blob: 940db247aa82cd9ac3be43400aa47d94a2bb7388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env node
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

/* eslint-env node */

/**
 * This script exports the schemas from this package in JSON format, for use by
 * other tools. It is run as a part of the publishing process to NPM.
 */

const fs = require("fs");
const schemas = require("./index.js");

fs.writeFile("./schemas.json", JSON.stringify(schemas), err => {
  if (err) {
    console.error("error", err);
  }
});