igniteui-cli 14.3.17 → 14.3.18-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-cli",
3
- "version": "14.3.17",
3
+ "version": "14.3.18-beta.2",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -70,8 +70,8 @@
70
70
  "all": true
71
71
  },
72
72
  "dependencies": {
73
- "@igniteui/angular-templates": "~19.1.14317",
74
- "@igniteui/cli-core": "~14.3.17",
73
+ "@igniteui/angular-templates": "~19.1.14318-beta.2",
74
+ "@igniteui/cli-core": "~14.3.18-beta.2",
75
75
  "@inquirer/prompts": "^5.4.0",
76
76
  "@types/yargs": "^17.0.33",
77
77
  "chalk": "^5.3.0",
@@ -41,12 +41,6 @@ jobs:
41
41
  sed -i 's|<base href="[^"]*">|<base href="/${{ github.event.repository.name }}/">|' ./dist/index.html
42
42
  - name: Update Resource Paths
43
43
  run: find ./dist -maxdepth 1 -type f ! -name 'sw*.js' ! -name 'workbox*.js' -name '*.js' -exec sed -i -e "s|/src/assets|/${{ github.event.repository.name }}/src/assets|g" -e "s|url('/src/assets|url('/${{ github.event.repository.name }}/src/assets|g" {} +
44
- - name: Copy ig-theme.css to dist
45
- run: cp ./ig-theme.css ./dist/
46
- - name: Update href Paths for ig-theme.css
47
- run: |
48
- find ./dist -type f -exec sed -i "s|href='../../ig-theme.css'|href='../../${{ github.event.repository.name }}/ig-theme.css'|g" {} +;
49
- find ./dist -type f -exec sed -i "s|href=\"../../ig-theme.css\"|href=\"../../${{ github.event.repository.name }}/ig-theme.css\"|g" {} +;
50
44
  - name: SPA routing handling
51
45
  run: cp ./dist/index.html ./dist/404.html
52
46
  - name: Upload build artifact to GitHub Pages
@@ -13,7 +13,7 @@
13
13
  "./$(dashName).js": "./dist/src/$(dashName).js"
14
14
  },
15
15
  "scripts": {
16
- "start": "tsc && concurrently -k -r \"tsc --watch\" \"wds\"",
16
+ "start": "concurrently -k -r \"tsc --watch\" \"vite\"",
17
17
  "build": "rimraf dist && tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite.js build",
18
18
  "start:build": "web-dev-server --root-dir dist --app-index index.html --open",
19
19
  "lint": "eslint \"**/*.{js,ts}\" --ignore-pattern .gitignore",
@@ -0,0 +1,5 @@
1
+ declare module '*.css?inline' {
2
+ import { CSSResult } from 'lit';
3
+ const content: CSSResult;
4
+ export default content;
5
+ }
@@ -24,7 +24,7 @@ export default defineConfig({
24
24
  /** Copy static assets */
25
25
  viteStaticCopy({
26
26
  targets: [
27
- { src: 'src/assets', dest: 'src' },
27
+ { src: 'src/assets', dest: 'src' }
28
28
  ],
29
29
  silent: true,
30
30
  }),