@ourtrip/ui 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ image: node:18
2
+
3
+ definitions:
4
+ caches:
5
+ npm: ~/.npm
6
+
7
+ pipelines:
8
+ branches:
9
+ master:
10
+ - step:
11
+ name: Build and publish to npm
12
+ caches:
13
+ - npm
14
+ script:
15
+ - npm install --legacy-peer-deps
16
+ - npm run build
17
+ - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
18
+ - npm publish --access public
19
+ artifacts:
20
+ - dist/**
21
+
22
+ pull-requests:
23
+ '**':
24
+ - step:
25
+ name: Build and test
26
+ caches:
27
+ - npm
28
+ script:
29
+ - npm install
30
+ - npm run build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourtrip/ui",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -16,16 +16,12 @@
16
16
  "@babel/preset-env": "^7.26.9",
17
17
  "@babel/preset-react": "^7.26.3",
18
18
  "@babel/preset-typescript": "^7.26.0",
19
- "@rollup/plugin-commonjs": "^28.0.3",
20
- "@rollup/plugin-node-resolve": "^16.0.1",
21
19
  "@types/react": "^19.0.10",
22
20
  "@types/react-dom": "^19.0.4",
23
21
  "@types/react-slider": "^1.3.6",
24
22
  "microbundle": "^0.15.1",
25
23
  "react": "^19.0.0",
26
24
  "react-dom": "^19.0.0",
27
- "rollup": "^2.79.2",
28
- "rollup-plugin-typescript2": "^0.36.0",
29
25
  "ts-loader": "^9.5.2",
30
26
  "typescript": "^5.8.2",
31
27
  "webpack": "^5.98.0",