build(aio): update boilerplate to new folder structure
This commit is contained in:
parent
25132bff86
commit
c6917d9d4f
|
@ -23,8 +23,8 @@
|
||||||
"~~update-webdriver": "webdriver-manager update --standalone false --gecko false",
|
"~~update-webdriver": "webdriver-manager update --standalone false --gecko false",
|
||||||
"pre~~deploy": "yarn build",
|
"pre~~deploy": "yarn build",
|
||||||
"~~deploy": "firebase deploy --message \"Commit: $TRAVIS_COMMIT\" --non-interactive --token \"$FIREBASE_TOKEN\"",
|
"~~deploy": "firebase deploy --message \"Commit: $TRAVIS_COMMIT\" --non-interactive --token \"$FIREBASE_TOKEN\"",
|
||||||
"boilerplate:add": "node ./scripts/add-example-boilerplate add",
|
"boilerplate:add": "node ./tools/examples/add-example-boilerplate add",
|
||||||
"boilerplate:remove": "node ./scripts/add-example-boilerplate remove"
|
"boilerplate:remove": "node ./tools/examples/add-example-boilerplate remove"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -4,8 +4,9 @@ const path = require('path');
|
||||||
const Q = require("q");
|
const Q = require("q");
|
||||||
const shelljs = require('shelljs');
|
const shelljs = require('shelljs');
|
||||||
|
|
||||||
const EXAMPLES_PATH = path.join(__dirname, '/../content/examples');
|
const EXAMPLES_PATH = path.join(__dirname, '/../../content/examples');
|
||||||
const BOILERPLATE_PATH = path.join(EXAMPLES_PATH, '_boilerplate');
|
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 EXAMPLES_TESTING_PATH = path.join(EXAMPLES_PATH, 'testing');
|
||||||
|
|
||||||
const files = {
|
const files = {
|
||||||
|
@ -28,7 +29,7 @@ const files = {
|
||||||
|
|
||||||
// requires admin access because it adds symlinks
|
// requires admin access because it adds symlinks
|
||||||
function add() {
|
function add() {
|
||||||
const realPath = path.join(EXAMPLES_PATH, '/node_modules');
|
const realPath = path.join(SHARED_PATH, '/node_modules');
|
||||||
const nodeModulesPaths = getNodeModulesPaths(EXAMPLES_PATH);
|
const nodeModulesPaths = getNodeModulesPaths(EXAMPLES_PATH);
|
||||||
|
|
||||||
// we install the examples modules first
|
// we install the examples modules first
|
||||||
|
@ -122,7 +123,7 @@ function getUnitTestingPaths(basePath) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function installNodeModules() {
|
function installNodeModules() {
|
||||||
shelljs.exec('yarn', {cwd: EXAMPLES_PATH});
|
shelljs.exec('yarn', {cwd: SHARED_PATH});
|
||||||
}
|
}
|
||||||
|
|
||||||
function remove() {
|
function remove() {
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue