Skip to content

Commit

Permalink
improved publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jancajthaml committed Aug 9, 2024
1 parent 7789d28 commit 3c77acb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 51 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
with:
node-version: 20.11.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache-dependency-path: |
dependencies/package-lock.json
package-lock.json
- name: install @lastui/rocker dependencies
run: npm ci --no-fund --no-audit
- name: install @lastui/dependencies dependencies
Expand All @@ -36,7 +38,9 @@ jobs:
with:
node-version: 20.11.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache-dependency-path: |
dependencies/package-lock.json
package-lock.json
- run: npm ci --no-fund --no-audit --prefer-offline --prefix=dependencies
- run: npm ci --no-fund --no-audit --prefer-offline
- run: npm run build:dependencies
Expand Down Expand Up @@ -66,7 +70,9 @@ jobs:
with:
node-version: 20.11.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache-dependency-path: |
dependencies/package-lock.json
package-lock.json
- run: npm ci --no-fund --no-audit --prefer-offline --prefix=dependencies
- run: npm ci --no-fund --no-audit --prefer-offline
- name: Test package platform
Expand Down Expand Up @@ -102,7 +108,9 @@ jobs:
with:
node-version: 20.11.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
cache-dependency-path: |
dependencies/package-lock.json
package-lock.json
- run: npm ci --no-fund --no-audit --prefer-offline --prefix=dependencies
- run: npm ci --no-fund --no-audit --prefer-offline
- run: npm run lint -- --debug
Expand Down
2 changes: 1 addition & 1 deletion dependencies/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lastui/dependencies",
"version": "1.5.4",
"version": "1.5.5",
"license": "Apache-2.0",
"author": "jan.cajthaml@gmail.com",
"homepage": "https://github.com/lastui/rocker#readme",
Expand Down
55 changes: 9 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lastui/rocker",
"version": "0.20.15",
"version": "0.20.16",
"license": "Apache-2.0",
"author": "jan.cajthaml@gmail.com",
"homepage": "https://github.com/lastui/rocker#readme",
Expand All @@ -15,53 +15,16 @@
"rocker": "cli/index.js"
},
"files": [
"babel/index.js",
"babel/plugins/RegisterModuleInjectBuildId.js",
"bootstrap/dll/bootstrap-dev-manifest.json",
"bootstrap/dll/bootstrap-prod-manifest.json",
"bootstrap/dll/bootstrap.dll.js",
"bootstrap/dll/bootstrap.dll.min.js",
"babel/*",
"bootstrap/dll/*-manifest.json",
"bootstrap/dll/*.js",
"bootstrap/index.js",
"cli/commands/build.js",
"cli/commands/lint.js",
"cli/commands/start.js",
"cli/commands/test.js",
"cli/commands/upgrade.js",
"cli/helpers/eslint.mjs",
"cli/helpers/io.mjs",
"cli/helpers/jest.mjs",
"cli/helpers/lint-stream.mjs",
"cli/helpers/prettier-package-json.mjs",
"cli/helpers/prettier.mjs",
"cli/helpers/shell.mjs",
"cli/helpers/stylelint.mjs",
"cli/helpers/upgrade.mjs",
"cli/helpers/webpack.mjs",
"cli/index.js",
"jest/__mocks__/platform.js",
"jest/helpers/platform.js",
"jest/index.js",
"jest/setupTests.js",
"jest/transform/css.js",
"jest/transform/file.js",
"platform/dll/platform-dev-manifest.json",
"platform/dll/platform-prod-manifest.json",
"platform/dll/platform.dll.js",
"platform/dll/platform.dll.min.js",
"cli/*",
"jest/*",
"platform/dll/*-manifest.json",
"platform/dll/*.js",
"platform/index.js",
"webpack/config/dll/index.js",
"webpack/config/module/development.js",
"webpack/config/module/index.js",
"webpack/config/module/production.js",
"webpack/config/spa/development.js",
"webpack/config/spa/index.js",
"webpack/config/spa/production.js",
"webpack/internal/base.js",
"webpack/internal/build.js",
"webpack/internal/development.js",
"webpack/plugins/ModuleLocalesPlugin.js",
"webpack/plugins/NormalizedModuleIdPlugin.js",
"webpack/settings/index.js"
"webpack/*"
],
"scripts": {
"build": "npm run build:dependencies && npm run build:platform && npm run build:bootstrap",
Expand Down

0 comments on commit 3c77acb

Please sign in to comment.