Skip to content

Commit

Permalink
chore: update github repo. url branch
Browse files Browse the repository at this point in the history
  • Loading branch information
orestbida committed Dec 11, 2023
1 parent 2b98bba commit e56e323
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/orestbida/cookieconsent/tree/v3.0-beta"
"url": "https://github.com/orestbida/cookieconsent/tree/v3"
},
"keywords": [
"cookie",
Expand Down
3 changes: 0 additions & 3 deletions rollup-core.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const replacePattern = /\/\/{{START: GUI}}[\s\S]*?\/\/{{END: GUI}}/g;
* @param {string} dstFilePath
*/
const copyCleanedFile = async (srcFilePath, dstFilePath) => {

if(path.extname(srcFilePath) === '.js'){
const content = await fs.readFile(srcFilePath, 'utf8');
const strippedFileContent = content.replaceAll(replacePattern, '');
Expand All @@ -26,7 +25,6 @@ const copyCleanedFile = async (srcFilePath, dstFilePath) => {
* @param {string} dest
*/
const copyDirectory = async (src, dest) => {

const [entries] = await Promise.all([
fs.readdir(src, { withFileTypes: true }),
fs.mkdir(dest, { recursive: true }),
Expand Down Expand Up @@ -70,6 +68,5 @@ export default defineConfig(
terserPlugin
]
},

]
);
1 change: 0 additions & 1 deletion rollup-full.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const cssComponents = [
];

const cssComponentsRollup = cssComponents.map(component => {

const src = `${srcDir}/scss/${component[0]}`;
const dst = `${cssComponentsDir}/${component[1]}`

Expand Down

0 comments on commit e56e323

Please sign in to comment.