Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

action: refactor config vercel and pages publish. #2317

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c2c0d76
Preven dev site break on Carbon Ads plugin error
jhildenbiddle Dec 1, 2023
71a5fd3
Replace live-server with browsersync
jhildenbiddle Dec 2, 2023
4756e59
Update test docs
jhildenbiddle Dec 2, 2023
282a1a5
update: verel config.
Koooooo-7 Dec 3, 2023
3d8d429
update: status code.
Koooooo-7 Dec 3, 2023
36df0a9
test.
Koooooo-7 Dec 3, 2023
60da4b7
rewrites.
Koooooo-7 Dec 3, 2023
99dc86e
trailingSlash
Koooooo-7 Dec 3, 2023
7211b18
trailingSlash false.
Koooooo-7 Dec 3, 2023
7a07294
update: local src.
Koooooo-7 Dec 3, 2023
002260e
style.
Koooooo-7 Dec 3, 2023
8a48a60
update: style.
Koooooo-7 Dec 3, 2023
1dccf4f
path.
Koooooo-7 Dec 3, 2023
0607b5c
update: cutome deploy.
Koooooo-7 Dec 3, 2023
6423c0a
update: cutome deploy.
Koooooo-7 Dec 3, 2023
635ea41
update: cutom deploy.
Koooooo-7 Dec 3, 2023
da3f731
update: keep.
Koooooo-7 Dec 3, 2023
d7a1c90
add lib.
Koooooo-7 Dec 3, 2023
7a555a2
add lib2.
Koooooo-7 Dec 3, 2023
c594358
add lib3.
Koooooo-7 Dec 3, 2023
3d34f77
lib4.
Koooooo-7 Dec 3, 2023
dd5bbc3
lib5.
Koooooo-7 Dec 3, 2023
2932927
lib6.
Koooooo-7 Dec 3, 2023
534abe0
lib7.
Koooooo-7 Dec 3, 2023
912168e
update: css.
Koooooo-7 Dec 4, 2023
0092c0c
update: action.
Koooooo-7 Dec 4, 2023
f556656
chore: polish.
Koooooo-7 Dec 4, 2023
aa4bfa7
chore: polish.
Koooooo-7 Dec 4, 2023
3b9f2e5
chore: polish.
Koooooo-7 Dec 4, 2023
d2f48e0
chore: polish2.
Koooooo-7 Dec 4, 2023
612501a
update: clean.
Koooooo-7 Dec 4, 2023
2e07917
update: rewrite path test.
Koooooo-7 Dec 4, 2023
98334e6
updata: slash.
Koooooo-7 Dec 4, 2023
8e4c3ea
update: only rewrite.
Koooooo-7 Dec 4, 2023
0f20916
fix: path.
Koooooo-7 Dec 4, 2023
f7e726e
fix: path2.
Koooooo-7 Dec 4, 2023
164f353
update: rewrite path.
Koooooo-7 Dec 4, 2023
c4f9bf0
update: rewrite path.
Koooooo-7 Dec 4, 2023
5bc182a
chore: bot.
Koooooo-7 Dec 4, 2023
ea38638
chore: polish.
Koooooo-7 Dec 4, 2023
149473b
chore: polish.
Koooooo-7 Dec 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@
},
},
plugins: [
DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'),
function () {
DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg');
},
function (hook, vm) {
hook.beforeEach(html => {
if (/githubusercontent\.com/.test(vm.route.file)) {
Expand Down
190 changes: 0 additions & 190 deletions index.html

This file was deleted.

6 changes: 5 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { TEST_HOST } from './test/config/server.js';
import serverConfig from './server.config.js';

const { hostname, port } = serverConfig.test;
const TEST_HOST = `http://${hostname}:${port}`;
const sharedConfig = {
errorOnDeprecated: true,
globalSetup: './test/config/jest.setup.js',
Expand All @@ -11,6 +13,8 @@ const sharedConfig = {
testURL: `${TEST_HOST}/_blank.html`,
};

process.env.TEST_HOST = TEST_HOST;

export default {
transform: {},
projects: [
Expand Down
Loading
Loading