Skip to content

Commit

Permalink
Merge branch 'release-1.64.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jsconan committed Dec 9, 2022
2 parents ba4fd2f + b1b676c commit b0bdd9a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
3 changes: 2 additions & 1 deletion build/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ Handlebars.Visitor.prototype.accept = function() {
};
/* --------------------------------------------------------- */

const inputs = glob.sync(path.join(srcDir, '**', '*.js'));
const globPath = p => p.replace(/\\/g, '/');
const inputs = glob.sync(globPath(path.join(srcDir, '**', '*.js')));

/**
* Define all modules as external, so rollup won't bundle them together.
Expand Down
3 changes: 2 additions & 1 deletion build/scss.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ const writeOutResult = async result => {
*/
const scssDirectories = [scssVendorDir, srcDir];

const globPath = p => p.replace(/\\/g, '/');
glob(
path.join(rootPath, `+(${scssDirectories.map(dir => path.relative(rootPath, dir)).join('|')})`, '**', '[^_]*.scss'),
globPath(path.join(rootPath, `+(${scssDirectories.map(dir => path.relative(rootPath, dir)).join('|')})`, '**', '[^_]*.scss')),
(err, files) => {
if (err) {
throw err;
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oat-sa/tao-core-ui",
"version": "1.64.0",
"version": "1.64.1",
"displayName": "TAO Core UI",
"description": "UI libraries of TAO",
"scripts": {
Expand Down Expand Up @@ -51,8 +51,8 @@
"@oat-sa/expr-eval": "^1.3.1",
"@oat-sa/prettier-config": "^0.1.1",
"@oat-sa/rollup-plugin-wildcard-external": "^0.1.0",
"@oat-sa/tao-core-libs": "^0.5.0",
"@oat-sa/tao-core-sdk": "^1.21.0",
"@oat-sa/tao-core-libs": "^0.5.1",
"@oat-sa/tao-core-sdk": "^1.21.1",
"@oat-sa/tao-core-shared-libs": "^1.4.1",
"@oat-sa/tao-qunit-testrunner": "^1.0.3",
"async": "^0.2.10",
Expand Down

0 comments on commit b0bdd9a

Please sign in to comment.