@tinywork/glass 0.0.0 → 0.0.4

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.
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import http from 'node:http';
4
+ import https from 'node:https';
5
+ import axios from 'axios';
6
+ export { fs, path, http, https, axios };
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@tinywork/glass",
3
- "version": "0.0.0",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "src/index.ts",
7
+ "files": [
8
+ "dist",
9
+ "src"
10
+ ],
7
11
  "scripts": {
8
12
  "build": "rm -rf ./dist && tsc",
9
13
  "release": "standard-version"
@@ -1,33 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
-
4
- name: Node.js Package
5
-
6
- on:
7
- release:
8
- types: [created]
9
-
10
- jobs:
11
- build:
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v3
15
- - uses: actions/setup-node@v3
16
- with:
17
- node-version: 16
18
- - run: npm ci
19
-
20
- publish-npm:
21
- needs: build
22
- runs-on: ubuntu-latest
23
- steps:
24
- - uses: actions/checkout@v3
25
- - uses: actions/setup-node@v3
26
- with:
27
- node-version: 16
28
- registry-url: https://registry.npmjs.org/
29
- scope: '@tinywork'
30
- - run: npm ci
31
- - run: npm publish --access public
32
- env:
33
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -1,5 +0,0 @@
1
- // 参考 https://commitlint.js.org/#/
2
-
3
- module.exports = {
4
- extends: ['@commitlint/config-conventional'],
5
- };
package/tsconfig.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "ESNext",
4
- "target": "es2020",
5
- "outDir": "dist",
6
- "lib": ["esnext", "DOM"],
7
- "sourceMap": false,
8
- "baseUrl": ".",
9
- "allowSyntheticDefaultImports": true,
10
- "moduleResolution": "node",
11
- "forceConsistentCasingInFileNames": true,
12
- "noImplicitReturns": true,
13
- "suppressImplicitAnyIndexErrors": true,
14
- "noUnusedLocals": true,
15
- "noEmit": false,
16
- "allowJs": false
17
- },
18
- "include": ["src/**/*"],
19
- "exclude": ["node_modules", "electron"]
20
- }