Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit f0d281b

Browse files
committed
chore: bump version
1 parent ce6c8ad commit f0d281b

File tree

12 files changed

+38
-94
lines changed

12 files changed

+38
-94
lines changed

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
"test:core": "jest",
3131
"test:module": "yarn workspace @chakra-ui/nuxt test",
3232
"test": "yarn test:core && yarn test:module",
33-
"publish-ci": "lerna publish from-package -y --no-verify-access",
34-
"release": "lerna version patch && lerna publish from-package",
35-
"push": "git add -A && git commit -m \"chore(lerna): publishing package \" && lerna version --conventional-commits",
33+
"publish-ci": "git add -A && git commit -m \"chore(lerna): publishing package \" && lerna publish from-package -y --no-verify-access",
3634
"clean": "lerna run clean",
3735
"storybook": "cross-env STORYBOOK_VUE_DEV_TOOLS=1 start-storybook -p 9000",
3836
"storybook:devtools": "vue-devtools",
@@ -83,7 +81,6 @@
8381
"lint-staged": "^9.4.2",
8482
"mdx-vue": "^1.0.2",
8583
"mdx-vue-loader": "^1.0.2",
86-
"mixpanel-browser": "^2.36.0",
8784
"node-fetch": "^2.6.0",
8885
"node-sass": "^4.13.1",
8986
"nuxt": "^2.13.3",
@@ -118,6 +115,7 @@
118115
"@emotion/eslint-plugin": "^11.0.0",
119116
"@nuxtjs/eslint-config": "^3.0.0",
120117
"@nuxtjs/eslint-module": "^1.0.0",
118+
"@nuxtjs/google-analytics": "^2.4.0",
121119
"@nuxtjs/module-test-utils": "^1.6.1",
122120
"@testing-library/jest-dom": "^5.1.1",
123121
"@testing-library/user-event": "^10.0.0",

packages/chakra-ui-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- Improve publishing workflow
8+
39
## 0.7.0
410

511
### Minor Changes

packages/chakra-ui-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/vue",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Build Accessible and Responsive Vue.js websites and applications with speed ⚡️",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/chakra-ui-nuxt/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- Improve publishing workflow
8+
- Updated dependencies [undefined]
9+
- @chakra-ui/vue@0.7.1
10+
311
## 0.2.0
412

513
### Minor Changes

packages/chakra-ui-nuxt/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/nuxt",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Chakra UI Module for Nuxt.js",
55
"repository": "https://github.com/chakra-ui/chakra-ui-vue",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"test": "jest"
1919
},
2020
"dependencies": {
21-
"@chakra-ui/vue": "^0.7.0",
21+
"@chakra-ui/vue": "^0.7.1",
2222
"chakra-loader": "latest",
2323
"@emotion/css": "^11.0.0"
2424
},

website/nuxt.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export default {
2727
},
2828
loading: { color: '#fff' },
2929
plugins: [
30-
{ src: 'plugins/analytics.js', ssr: false },
3130
'plugins/links.js',
3231
'plugins/editor.js',
3332
'plugins/chakra-ui.js',
@@ -39,7 +38,8 @@ export default {
3938
],
4039
buildModules: [
4140
'@nuxtjs/eslint-module',
42-
'modules/routes'
41+
'modules/routes',
42+
'@nuxtjs/google-analytics'
4343
],
4444
modules: [
4545
'@nuxtjs/emotion',
@@ -87,5 +87,8 @@ export default {
8787
extend (config, ctx) {
8888
config.resolve.alias.vue = 'vue/dist/vue.common'
8989
}
90+
},
91+
googleAnalytics: {
92+
id: 'G-D771874GK6'
9093
}
9194
}

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"@nuxtjs/dotenv": "^1.4.0",
3434
"@nuxtjs/emotion": "^0.0.1",
3535
"@nuxtjs/now-builder": "^0.17.0",
36+
"@nuxtjs/google-analytics": "^2.4.0",
3637
"@nuxtjs/pwa": "^3.0.0-0",
3738
"@vue-a11y/skip-to": "^2.0.1",
3839
"copy-to-clipboard": "^3.3.1",
@@ -43,7 +44,6 @@
4344
"github-buttons": "^2.11.3",
4445
"mdx-vue": "^1.0.2",
4546
"mdx-vue-loader": "^1.0.2",
46-
"mixpanel-browser": "^2.36.0",
4747
"node-sass": "^4.13.1",
4848
"nuxt": "^2.13.3",
4949
"prismjs": "^1.19.0",

website/pages/index.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,6 @@ export default {
121121
{ charset: 'utf-8' },
122122
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }]
123123
}
124-
},
125-
beforeMount () {
126-
console.log(this.$mixpanel)
127-
this.$mixpanel.track('Page view', { page: '/' })
128124
}
129125
}
130126
</script>

website/plugins/analytics.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

website/static/sw.js

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1 @@
1-
importScripts('https://cdn.jsdelivr.net/npm/[email protected]/workbox/workbox-sw.js')
2-
3-
// --------------------------------------------------
4-
// Configure
5-
// --------------------------------------------------
6-
7-
// Set workbox config
8-
workbox.setConfig({
9-
"debug": false
10-
})
11-
12-
// Start controlling any existing clients as soon as it activates
13-
workbox.core.clientsClaim()
14-
15-
// Skip over the SW waiting lifecycle stage
16-
workbox.core.skipWaiting()
17-
18-
workbox.precaching.cleanupOutdatedCaches()
19-
20-
// --------------------------------------------------
21-
// Precaches
22-
// --------------------------------------------------
23-
24-
// Precache assets
25-
26-
// --------------------------------------------------
27-
// Runtime Caching
28-
// --------------------------------------------------
29-
30-
// Register route handlers for runtimeCaching
31-
workbox.routing.registerRoute(new RegExp('/_nuxt/'), new workbox.strategies.CacheFirst ({}), 'GET')
32-
workbox.routing.registerRoute(new RegExp('/'), new workbox.strategies.NetworkFirst ({}), 'GET')
1+
// THIS FILE SHOULD NOT BE VERSION CONTROLLED

0 commit comments

Comments
 (0)