gg-mysql-connector 1.0.14 → 1.0.22

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.
Files changed (2) hide show
  1. package/.gitlab-ci.yml +13 -0
  2. package/package.json +4 -3
package/.gitlab-ci.yml ADDED
@@ -0,0 +1,13 @@
1
+ image: node:16
2
+
3
+ stages:
4
+ - publish
5
+
6
+ publish:
7
+ stage: publish
8
+ script:
9
+ - npm install
10
+ - npm install typescript --save-dev
11
+ - npm run build
12
+ - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
13
+ - npm publish
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "gg-mysql-connector",
3
- "version": "1.0.14",
3
+ "version": "1.0.22",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "build": "tsc && npm version patch"
8
+ "build": "tsc && npm version patch --no-git-tag-version"
9
9
  },
10
10
  "author": "",
11
11
  "license": "ISC",
@@ -17,6 +17,7 @@
17
17
  "path": "^0.12.7"
18
18
  },
19
19
  "devDependencies": {
20
- "@types/node": "^22.7.5"
20
+ "@types/node": "^22.7.5",
21
+ "typescript": "^5.6.3"
21
22
  }
22
23
  }