Skip to content

Commit f046a67

Browse files
committed
fix: correctly rename to smooth
1 parent cf60fc2 commit f046a67

File tree

119 files changed

+17
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion

examples/emotion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"@emotion/core": "^10.0.6",
1010
"react": "^16.8.2",
1111
"react-dom": "^16.8.2",
12-
"smooth-core": "latest"
12+
"smooth": "latest"
1313
}
1414
}

examples/head-elements/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/head-elements/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import Head from 'smooth-core/head'
2+
import Head from 'smooth/head'
33

44
export default () => (
55
<>

examples/hello-world/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/hello-world/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import { Link } from 'smooth-core/router'
2+
import { Link } from 'smooth/router'
33

44
export default () => (
55
<div>

examples/simple/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-app-layout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-dynamic-import/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest"
11+
"smooth": "latest"
1212
}
1313
}

examples/with-dynamic-import/src/pages/index$.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import loadable from 'smooth-core/loadable'
2+
import loadable from 'smooth/loadable'
33

44
const DynamicComponent = loadable(() =>
55
import('../components/DynamicComponent'),

examples/with-styled-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest",
11+
"smooth": "latest",
1212
"styled-components": "^4.1.3"
1313
}
1414
}

examples/with-styled-components/src/_document.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import Document from 'smooth-core/document'
2+
import Document from 'smooth/document'
33
import { ServerStyleSheet } from 'styled-components'
44

55
Document.getInitialProps = async ctx => {

examples/with-webpack-bundle-analyzer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"react": "^16.8.2",
1010
"react-dom": "^16.8.2",
11-
"smooth-core": "latest",
11+
"smooth": "latest",
1212
"webpack-bundle-analyzer": "^3.0.3"
1313
}
1414
}

examples/wordpress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"react-dom": "^16.8.2",
1010
"smooth-backend-wordpress": "latest",
1111
"smooth-plugin-head-meta": "latest",
12-
"smooth-core": "latest"
12+
"smooth": "latest"
1313
}
1414
}

examples/wordpress/src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import gql from 'graphql-tag'
3-
import { BlockFragment, Blocks } from 'smooth-core/content'
4-
import { Link } from 'smooth-core/router'
3+
import { BlockFragment, Blocks } from 'smooth/content'
4+
import { Link } from 'smooth/router'
55

66
export const contentFragment = gql`
77
fragment PageProps on Page {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"scripts": {
77
"build": "lerna run build",
8-
"build:doc": "doctoc packages/smooth-core/README.md",
8+
"build:doc": "doctoc packages/smooth/README.md",
99
"dev": "WATCH_MODE=true lerna run build --parallel -- --watch",
1010
"format": "prettier --write \"**/*.{js,json,md}\"",
1111
"lint": "eslint . --ignore-pattern \"examples/**/*.js\"",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)