Skip to content

Commit

Permalink
V0.0.87 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuhito authored Aug 30, 2024
1 parent 255d722 commit a4c22cd
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 25 deletions.
8 changes: 4 additions & 4 deletions apps/tutorial/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qni/tutorial",
"version": "0.0.86",
"version": "0.0.87",
"description": "An interactive tutorial for @qni/www.",
"author": "@yasuhito",
"homepage": "https://github.com/qniapp/qni#readme",
Expand All @@ -22,9 +22,9 @@
"url": "https://github.com/qniapp/qni/issues"
},
"dependencies": {
"@qni/common": "^0.0.86",
"@qni/elements": "^0.0.86",
"@qni/simulator": "^0.0.86"
"@qni/common": "^0.0.87",
"@qni/elements": "^0.0.87",
"@qni/simulator": "^0.0.87"
},
"eslintIgnore": [
"application.css",
Expand Down
8 changes: 4 additions & 4 deletions apps/www/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qni/www",
"version": "0.0.86",
"version": "0.0.87",
"description": "Web service for @qni.",
"author": "@yasuhito",
"homepage": "https://github.com/qniapp/qni/tree/main/apps/www#readme",
Expand Down Expand Up @@ -45,9 +45,9 @@
"prettier": "@github/prettier-config",
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@qni/common": "^0.0.86",
"@qni/elements": "^0.0.86",
"@qni/simulator": "^0.0.86",
"@qni/common": "^0.0.87",
"@qni/elements": "^0.0.87",
"@qni/simulator": "^0.0.87",
"@rails/ujs": "~7.0",
"@svgdotjs/svg.filter.js": "^3.0.8",
"@svgdotjs/svg.js": "^3.1.1",
Expand Down
6 changes: 3 additions & 3 deletions examples/elements-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qni/elements-example",
"version": "0.0.86",
"version": "0.0.87",
"description": "An example project for @qni/elements.",
"author": "@yasuhito",
"license": "MIT",
Expand All @@ -12,8 +12,8 @@
"css:watch": "yarn build:css --watch"
},
"dependencies": {
"@qni/elements": "^0.0.86",
"@qni/simulator": "^0.0.86",
"@qni/elements": "^0.0.87",
"@qni/simulator": "^0.0.87",
"cookie-parser": "~1.4.4",
"debug": "~4.3",
"ejs": "~3.1",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.86",
"version": "0.0.87",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qni/common",
"version": "0.0.86",
"version": "0.0.87",
"description": "Common library for @qni.",
"author": "@yasuhito",
"homepage": "https://github.com/qniapp/qni/tree/main/packages/common#readme",
Expand Down
6 changes: 3 additions & 3 deletions packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qni/elements",
"version": "0.0.86",
"version": "0.0.87",
"description": "Quantum circuit components.",
"author": "@yasuhito",
"license": "MIT",
Expand All @@ -22,7 +22,7 @@
"presize": "npm run build",
"size": "size-limit",
"pretest": "npm run build",
"test": "web-test-runner test/**/*-test.js --node-resolve",
"test": "web-test-runner test/**/*-test.js --node-resolve --concurrency 1",
"test:ci": "yarn test",
"test:watch": "yarn test --watch",
"watch:css": "yarn build:css --watch",
Expand All @@ -42,7 +42,7 @@
"dependencies": {
"@github/catalyst": "1.3.0",
"@github/jtml": "~0.5",
"@qni/common": "^0.0.86",
"@qni/common": "^0.0.87",
"complex.js": "^2.1.1",
"interactjs": "~1.10",
"pretty-format": "^29.4.2",
Expand Down
11 changes: 5 additions & 6 deletions packages/elements/web-test-runner.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line filenames/match-regex
import {fromRollup} from '@web/dev-server-rollup'
import rollupCommonjs from '@rollup/plugin-commonjs'
import rollupPostcss from 'rollup-plugin-postcss'
Expand All @@ -11,16 +10,16 @@ const replace = fromRollup(rollupReplace)
export default {
rootDir: '../../',
mimeTypes: {
'**/*.css': 'js'
'**/*.css': 'js',
},
plugins: [
commonjs({
include: ['../../**/node_modules/fraction.js/**/*', '../../**/node_modules/interactjs/**/*']
include: ['../../**/node_modules/fraction.js/**/*', '../../**/node_modules/interactjs/**/*'],
}),
postcss({include: ['dist/qni.css'], modules: true}),
replace({
'process.env.NODE_ENV': JSON.stringify('production'),
preventAssignment: true
})
]
preventAssignment: true,
}),
],
}
6 changes: 3 additions & 3 deletions packages/simulator/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@qni/simulator",
"version": "0.0.86",
"version": "0.0.87",
"description": "Quantum simulator for @qni.",
"author": "@yasuhito",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/qniapp/qni.git"
},
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand All @@ -34,7 +34,7 @@
],
"prettier": "@github/prettier-config",
"dependencies": {
"@qni/elements": "^0.0.86",
"@qni/elements": "^0.0.87",
"fp-ts": "^2.11.5",
"qunit": "^2.19.4"
},
Expand Down

0 comments on commit a4c22cd

Please sign in to comment.