build(aio): update boilerplate to new folder structure

This commit is contained in:
Jesus Rodriguez 2017-04-02 16:53:41 +02:00 committed by Pete Bacon Darwin
parent 25132bff86
commit c6917d9d4f
3 changed files with 6369 additions and 6 deletions

View File

@ -23,8 +23,8 @@
"~~update-webdriver": "webdriver-manager update --standalone false --gecko false",
"pre~~deploy": "yarn build",
"~~deploy": "firebase deploy --message \"Commit: $TRAVIS_COMMIT\" --non-interactive --token \"$FIREBASE_TOKEN\"",
"boilerplate:add": "node ./scripts/add-example-boilerplate add",
"boilerplate:remove": "node ./scripts/add-example-boilerplate remove"
"boilerplate:add": "node ./tools/examples/add-example-boilerplate add",
"boilerplate:remove": "node ./tools/examples/add-example-boilerplate remove"
},
"private": true,
"dependencies": {

View File

@ -4,8 +4,9 @@ const path = require('path');
const Q = require("q");
const shelljs = require('shelljs');
const EXAMPLES_PATH = path.join(__dirname, '/../content/examples');
const BOILERPLATE_PATH = path.join(EXAMPLES_PATH, '_boilerplate');
const EXAMPLES_PATH = path.join(__dirname, '/../../content/examples');
const SHARED_PATH = path.join(__dirname, '/shared');
const BOILERPLATE_PATH = path.join(SHARED_PATH, 'boilerplate');
const EXAMPLES_TESTING_PATH = path.join(EXAMPLES_PATH, 'testing');
const files = {
@ -28,7 +29,7 @@ const files = {
// requires admin access because it adds symlinks
function add() {
const realPath = path.join(EXAMPLES_PATH, '/node_modules');
const realPath = path.join(SHARED_PATH, '/node_modules');
const nodeModulesPaths = getNodeModulesPaths(EXAMPLES_PATH);
// we install the examples modules first
@ -122,7 +123,7 @@ function getUnitTestingPaths(basePath) {
}
function installNodeModules() {
shelljs.exec('yarn', {cwd: EXAMPLES_PATH});
shelljs.exec('yarn', {cwd: SHARED_PATH});
}
function remove() {

File diff suppressed because it is too large Load Diff