Skip to content

Commit

Permalink
fix: package bump for redeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
david-kutas committed Feb 9, 2024
1 parent 621c631 commit b61f009
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/charts-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.1.0",
"description": "A vue wrapper built with Stencil's bindings for the visa-charts-lib stencil.js based component library. ",
"license": "SEE LICENCE IN LICENSE",
"author": "Visa Data Experience Team",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,13 +17,12 @@
"repository": {
"type": "git",
"url": "https://github.com/visa/visa-chart-components.git",
"directory": "/packages/charts-react"
"directory": "/packages/charts-vue"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Visa Data Experience Team",
"scripts": {
"audit": "yarn audit --json --level low > yarn-audit.json",
"yarn-install": "yarn",
Expand Down
4 changes: 2 additions & 2 deletions packages/charts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"d3-time-format": "^2.3.0",
"d3-transition": "1.1.3",
"topojson-client": "3.1.0",
"uuid": "8.3.2"
"uuid": "8.3.2",
"@visa/charts-types": "^0.6.1"
},
"devDependencies": {
"@visa/alluvial-diagram": "^3.1.1",
"@visa/bar-chart": "^6.2.0",
"@visa/charts-types": "^0.6.1",
"@visa/circle-packing": "^7.2.0",
"@visa/clustered-bar-chart": "^6.2.0",
"@visa/dumbbell-plot": "^7.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"d3-time-format": "^2.3.0",
"d3-transition": "1.1.3",
"deep-keys": "^0.5.0",
"i18next": "22.4.9",
"i18next": "23.5.1",
"vega-canvas": "1.2.6",
"yup": "^0.30.0"
},
Expand Down
5 changes: 4 additions & 1 deletion scripts/license-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const tsFileExclusions = [
'/**/__snapshots__/**', // auto-generated testing snapshots
'/**/node_modules/**', // ensure node modules is not included
'/**/charts-angular/src/directives/**', // auto-generated angular directives/components
'/**/charts-react/src/components/**' // auto-generated react components and utilities
'/**/charts-react/src/components/**', // auto-generated react components and utilities
'/**/charts-vue/lib/vue-component-lib/**', // auto-generated vue components and utilities
'/**/charts-vue/lib/components.ts' // auto-generated vue components and utilities
];

const licenseFileExclusions = [
Expand Down Expand Up @@ -88,6 +90,7 @@ const tsFiles = [
...glob.sync(path.join(__dirname, '..', 'packages/*/src') + '/**/*.*ss', {}), // all scss files in package/src directories
...glob.sync(path.join(__dirname, '..', 'packages/charts-R/inst/htmlwidgets') + '/**/*.js', {}), // @visa/charts compiled code in charts-R
...glob.sync(path.join(__dirname, '..', 'packages/charts-python/js') + '/**/*.js', { ignore: tsFileExclusions }),
...glob.sync(path.join(__dirname, '..', 'packages/charts-vue/lib') + '/**/*.js', { ignore: tsFileExclusions }),
...glob.sync(path.join(__dirname, '..', 'scripts') + '/*.js', {}), // all node scripts in the root
...glob.sync(path.join(__dirname, '..') + '/*.js', {}), // all js config files in the root
...glob.sync(path.join(__dirname, '..', '.storybook') + '/**/*.js', { ignore: tsFileExclusions }) // all storybook js files
Expand Down

0 comments on commit b61f009

Please sign in to comment.