Skip to content

Commit

Permalink
docs: update page order
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed May 20, 2021
1 parent e6e9df2 commit 2c8ee72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions core/webpack-compile/tests/draft.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ describe('test draft', () => {
expect(store.components).toMatchObject({
'65aa3f665b0cda214f97cbe81c526f01': {
name: 'Spinner',
from: './Spinner',
externalDependencies: {
react: [
{
Expand Down Expand Up @@ -642,7 +641,7 @@ describe('test draft', () => {
},
bundleName: 'component-controls.js',
cssFileName: undefined,
stories: ['../src/docs/*.mdx', '../src/**/*.docs.@(tsx|jsx)'],
stories: ['../src/docs/*.mdx', '../src/**/*.docs.@(tsx|jsx|ts|js)'],
instrument: {
components: {
package: {
Expand Down
2 changes: 1 addition & 1 deletion examples/starter/src/api/sum/sum.docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { sum } from './sum';

const doc = {
title: 'Library/api/sum',
order: 1,
order: 3,
component: sum,
};

Expand Down
2 changes: 1 addition & 1 deletion examples/starter/src/components/Spinner/Spinner.docs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Spinner } from './Spinner';

const doc = {
title: 'Library/Components/Spinner',
order: 1,
order: 2,
component: Spinner,
};

Expand Down

0 comments on commit 2c8ee72

Please sign in to comment.