ko 6.6.6 → 6.6.7-beta.1

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/lib/cli.js +0 -0
  2. package/package.json +9 -9
package/lib/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ko",
3
- "version": "6.6.6",
3
+ "version": "6.6.7-beta.1",
4
4
  "description": "build & lint library",
5
5
  "keywords": [
6
6
  "ko",
@@ -34,6 +34,12 @@
34
34
  "files": [
35
35
  "lib/*"
36
36
  ],
37
+ "scripts": {
38
+ "prepublishOnly": "rm -rf lib && tsc",
39
+ "debug": "tsc -w --sourceMap",
40
+ "test": "jest",
41
+ "build": "tsc"
42
+ },
37
43
  "dependencies": {
38
44
  "@babel/core": "^7.18.0",
39
45
  "@dtinsight/auto-polyfills-webpack-plugin": "2.0.0",
@@ -96,11 +102,5 @@
96
102
  },
97
103
  "engines": {
98
104
  "node": ">=14"
99
- },
100
- "scripts": {
101
- "debug": "tsc -w --sourceMap",
102
- "test": "jest",
103
- "build": "tsc"
104
- },
105
- "readme": "# ko\nEnglish | [简体中文](./README_CN.md)\n## Simple, yet powerful, tool for managing your react applications. \n\n<a href=\"https://www.npmjs.com/package/ko\"><img alt=\"NPM Status\" src=\"https://img.shields.io/npm/v/ko.svg?style=flat\"></a>\n\n## Features\n\n* Support building applications on top of **webpack v5** and **esbuild**\n* Customize ko to work exactly the way you need it for your applications \n* Built-in popular linting tools to lint your source code\n* Built-in support typescript\n\n## Installation\n\nYou can install ko using npm, yarn or pnpm:\n``` bash\nnpm install ko --save-dev\n# or\nyarn add ko --dev\n# or \npnpm add ko --save-dev\n```\n\n## Documents\n* [Introduction](https://dtstack.github.io/ko/zh-CN/docs/current/introduction)\n* [Getting Started](https://dtstack.github.io/ko/zh-CN/docs/current/getting-started)\n* [FAQ](https://dtstack.github.io/ko/zh-CN/docs/current/FAQ)\n\n## Contributing\n\nWe'd love to have your helping hand on `ko`! See [CONTRIBUTING](../../CONTRIBUTING.md) for more information on how to get started.\n\n## License\n\nCopyright © DTStack. All rights reserved.\n\nLicensed under the MIT license.\n"
106
- }
105
+ }
106
+ }