Skip to content

Commit

Permalink
Replace upath with @ewizardjs/upath
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsizemore committed May 18, 2024
1 parent 870d6aa commit ee78f1c
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 56 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ v20.11.1
* Updated `Charts.js` to 4.4.1
* Updated `assests/demo/chart-*-demo.js` files as a result.
* Updated `fontawesome` to 6.5.1
* Replaced `upath` with `@ewizardjs/upath` v3.0.0
* Updated copyright year to 2024.

##### Addressing Bootstrap Deprecations
Expand Down
90 changes: 44 additions & 46 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"pug": "3.0.2",
"sass": "1.77.2",
"shelljs": "0.8.5",
"upath": "2.0.1"
"@ewizardjs/upath": "3.0.0"
}
}
2 changes: 1 addition & 1 deletion scripts/build-pug.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const sh = require('shelljs');
const renderPug = require('./render-pug');

Expand Down
2 changes: 1 addition & 1 deletion scripts/clean.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const sh = require('shelljs');
const upath = require('upath');
const upath = require('@ewizardjs/upath');

const destPath = upath.resolve(upath.dirname(__filename), '../dist');

Expand Down
2 changes: 1 addition & 1 deletion scripts/render-assets.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const fs = require('fs');
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const sh = require('shelljs');

module.exports = function renderAssets() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/render-pug.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const fs = require('fs');
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const pug = require('pug');
const sh = require('shelljs');
const prettier = require('prettier');
Expand Down
2 changes: 1 addition & 1 deletion scripts/render-scripts.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';
const fs = require('fs');
const packageJSON = require('../package.json');
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const sh = require('shelljs');

module.exports = function renderScripts() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/render-scss.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const autoprefixer = require('autoprefixer');
const fs = require('fs');
const packageJSON = require('../package.json');
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const postcss = require('postcss');
const sass = require('sass');
const sh = require('shelljs');
Expand Down
2 changes: 1 addition & 1 deletion scripts/sb-watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const _ = require('lodash');
const chokidar = require('chokidar');
const upath = require('upath');
const upath = require('@ewizardjs/upath');
const renderAssets = require('./render-assets');
const renderPug = require('./render-pug');
const renderScripts = require('./render-scripts');
Expand Down
2 changes: 1 addition & 1 deletion scripts/start-debug.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const concurrently = require('concurrently');
const upath = require('upath');
const upath = require('@ewizardjs/upath');

const browserSyncPath = upath.resolve(upath.dirname(__filename), '../node_modules/.bin/browser-sync');

Expand Down
2 changes: 1 addition & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const concurrently = require('concurrently');
const upath = require('upath');
const upath = require('@ewizardjs/upath');

const browserSyncPath = upath.resolve(upath.dirname(__filename), '../node_modules/.bin/browser-sync');

Expand Down

0 comments on commit ee78f1c

Please sign in to comment.