Feature/rebrand (#27)

This commit is contained in:
Daniel Lautzenheiser
2022-10-02 20:06:20 -04:00
committed by GitHub
parent 11a684f372
commit 8a59f850d1
117 changed files with 2398 additions and 2272 deletions

View File

@ -2,7 +2,7 @@ const path = require('path');
const webpack = require('webpack');
const isProduction = process.env.NODE_ENV === 'production';
const devServerPort = parseInt(process.env.SIMPLE_CMS_DEV_SERVER_PORT || `${8080}`);
const devServerPort = parseInt(process.env.STATIC_CMS_DEV_SERVER_PORT || `${8080}`);
function moduleNameToPath(libName) {
return path.resolve(__dirname, 'node_modules', libName);
@ -66,9 +66,9 @@ module.exports = {
],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'simple-cms-core.js',
filename: 'static-cms-core.js',
library: {
name: 'SimpleCmsCore',
name: 'StaticCmsCore',
type: 'umd',
},
},