Skip to content

Commit

Permalink
CIF-1548 - Generate CSS API file (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
herzog31 authored Aug 26, 2020
1 parent ce1abc4 commit dd4d636
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
43 changes: 43 additions & 0 deletions react-components/css-template.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*******************************************************************************
*
* Copyright 2019 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*
******************************************************************************/

const fs = require('fs');
const path = require('path');

const distFolder = path.join(__dirname, 'dist');
if (!fs.existsSync(distFolder)) {
console.error('Could not find dist folder');
return;
}

const templatesFolder = path.join(distFolder, 'css-api');
if (!fs.existsSync(templatesFolder)) {
fs.mkdirSync(templatesFolder);
}

const files = fs.readdirSync(distFolder);
files
.filter(f => f.endsWith('.css') && !f.endsWith('-template.css'))
.forEach(f => {
let cssPath = path.join(distFolder, f);

// Clear css classes
let css = fs.readFileSync(cssPath, { encoding: 'utf-8' });
let emptyCss = css.replace(/\{([^{}]*)\}/gm, '{}');

// Store in new file
let { base } = path.parse(cssPath);
let cssPathNew = path.join(templatesFolder, base);
fs.writeFileSync(cssPathNew, emptyCss);
});
2 changes: 1 addition & 1 deletion react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"scripts": {
"lint": "eslint 'src/**/*.js'",
"webpack:dev": "webpack --mode=development",
"webpack:prod": "webpack --mode=production",
"webpack:prod": "webpack --mode=production && node css-template.js",
"test": "npm run lint && npm run prettier:check && jest --coverage",
"ci": "npm run lint && npm run prettier:check && jest --ci --runInBand --coverage",
"test:watch": "npm run lint && jest --watch",
Expand Down

0 comments on commit dd4d636

Please sign in to comment.