erudit 2.0.0-dev.7 → 2.0.0-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/globalPath.ts +0 -3
- package/package.json +3 -3
package/globalPath.ts
CHANGED
|
@@ -4,10 +4,7 @@ import { resolvePaths } from 'erudit-cog/kit';
|
|
|
4
4
|
export const ERUDIT_DIR = resolvePaths(fileURLToPath(import.meta.url), '..');
|
|
5
5
|
export const PROJECT_DIR = process.env.ERUDIT_PROJECT_DIR as string;
|
|
6
6
|
|
|
7
|
-
console.log('ERUDIT_DIR: ', ERUDIT_DIR);
|
|
8
|
-
|
|
9
7
|
export function eruditPath(path?: string) {
|
|
10
|
-
console.log('Erudit Path: ', path ? `${ERUDIT_DIR}/${path}` : ERUDIT_DIR);
|
|
11
8
|
return path ? `${ERUDIT_DIR}/${path}` : ERUDIT_DIR;
|
|
12
9
|
}
|
|
13
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erudit",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "🤓 CMS for perfect educational sites.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"directory": "packages/erudit"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
+
"erudit-cli": "1.0.0-dev.7",
|
|
15
|
+
"erudit-cog": "1.0.0-dev.3",
|
|
14
16
|
"@floating-ui/vue": "^1.1.6",
|
|
15
17
|
"bitran": "^3.0.0-dev.3",
|
|
16
18
|
"chalk": "^5.4.1",
|
|
17
19
|
"chokidar": "^4.0.3",
|
|
18
20
|
"consola": "^3.4.0",
|
|
19
|
-
"erudit-cli": "1.0.0-dev.6",
|
|
20
|
-
"erudit-cog": "1.0.0-dev.3",
|
|
21
21
|
"glob": "^11.0.1",
|
|
22
22
|
"image-size": "^1.2.0",
|
|
23
23
|
"nuxt": "3.15.4",
|