feat: governence deployment

This commit is contained in:
bartosz-lipinski 2021-03-20 17:39:19 -05:00
parent 9bbb224014
commit bb27547446
3 changed files with 9 additions and 33590 deletions

View File

@ -7,6 +7,14 @@ const appDirectory = fs.realpathSync(process.cwd());
const resolvePackage = relativePath => path.resolve(appDirectory, relativePath);
module.exports = {
webpack: {
configure: (webpackConfig, { env, paths }) => {
paths.appBuild = webpackConfig.output.path = path.resolve(
'./../../build/proposals',
);
return webpackConfig;
},
},
plugins: [
{
plugin: CracoLessPlugin,

File diff suppressed because it is too large Load Diff

View File

@ -55,7 +55,7 @@
"localnet:down": "solana-localnet down",
"localnet:logs": "solana-localnet logs -f",
"predeploy": "git pull --ff-only && yarn && yarn build",
"deploy": "gh-pages -d build",
"deploy": "gh-pages -d ../../build/proposals --repo https://github.com/solana-labs/oyster-governance",
"deploy:ar": "arweave deploy-dir build --key-file ",
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\""
},