Skip to content

Commit

Permalink
Fixing build process (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 4, 2024
1 parent 62b8147 commit 3052e5c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
run: "yarn install"

- name: "Test build"
run: "yarn workspace @fastybird/web-ui-docs build"
run: "yarn build"

publish-npmjs:
name: "Build library and publish it to NPM"
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
run: "yarn install"

- name: "Build"
run: "yarn workspace @fastybird/web-ui-docs build"
run: "yarn build"

- name: "Deploy"
uses: "JamesIves/github-pages-deploy-action@3.6.2"
Expand Down
1 change: 1 addition & 0 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"vite": "^5.2",
Expand Down
1 change: 1 addition & 0 deletions packages/constants/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"vite": "^5.2",
Expand Down
1 change: 1 addition & 0 deletions packages/directives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"vite": "^5.2",
Expand Down
1 change: 1 addition & 0 deletions packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"vite": "^5.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/theme-chalk/gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import autoprefixer from 'gulp-autoprefixer';
import cleanCSS from 'gulp-clean-css';
import consola from 'consola';

const webUiLibraryOutput = resolve(resolve(resolve(__dirname, '..'), 'web-ui-library'), 'dist');
const webUiLibraryOutput = resolve(__dirname, '..', '..', 'web-ui-library', 'dist');

const distFolder = path.resolve(__dirname, 'dist');
const distBundle = path.resolve(webUiLibraryOutput, 'theme-chalk');
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"type-fest": "^4.18",
"vite": "^5.2",
"vite-plugin-dts": "^3.9",
"vue": "^3.4",
Expand Down
4 changes: 3 additions & 1 deletion web-ui-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "yarn build:generate && yarn build:build && yarn pretty:write",
"build:generate": "tsx build/generate.ts",
"build:build": "yarn clean && vue-tsc --noEmit --composite false && vite build",
"build:build": "vue-tsc --noEmit --composite false && vite build",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"pretty": "yarn pretty:write && yarn pretty:check",
Expand Down Expand Up @@ -73,7 +73,9 @@
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"tsx": "^4.9",
"type-fest": "^4.18",
"typescript": "^5.4",
"typescript-eslint": "^7.8",
"vite": "^5.2",
Expand Down

0 comments on commit 3052e5c

Please sign in to comment.