@cfxjs/sirius-next-i18n 0.1.17 → 0.1.19

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 (31) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/cspace/en/translation.json +28 -8
  3. package/cspace/zh_cn/translation.json +23 -3
  4. package/dist/cspace/en/translation.json +28 -8
  5. package/dist/evm/base/en/translation.json +1 -1
  6. package/evm/base/en/translation.json +1 -1
  7. package/evm/base/zh_cn/translation.json +1 -1
  8. package/package.json +8 -8
  9. package/dist/cspace/zh_cn/index.d.ts +0 -2
  10. package/dist/cspace/zh_cn/index.d.ts.map +0 -1
  11. package/dist/cspace/zh_cn/index.js +0 -14
  12. package/dist/cspace/zh_cn/translation.json +0 -2369
  13. package/dist/cspace/zh_cn/translationForDotNet.json +0 -2289
  14. package/node_modules/@cfxjs/sirius-next-eslint-config/README.md +0 -3
  15. package/node_modules/@cfxjs/sirius-next-eslint-config/library.js +0 -34
  16. package/node_modules/@cfxjs/sirius-next-eslint-config/package.json +0 -18
  17. package/node_modules/@cfxjs/sirius-next-eslint-config/react-internal.js +0 -43
  18. package/node_modules/@cfxjs/sirius-next-typescript-config/base.json +0 -20
  19. package/node_modules/@cfxjs/sirius-next-typescript-config/package.json +0 -9
  20. package/node_modules/@cfxjs/sirius-next-typescript-config/react-library.json +0 -8
  21. package/node_modules/@turbo/gen/LICENSE +0 -373
  22. package/node_modules/@turbo/gen/README.md +0 -38
  23. package/node_modules/@turbo/gen/dist/cli.d.ts +0 -1
  24. package/node_modules/@turbo/gen/dist/cli.js +0 -127
  25. package/node_modules/@turbo/gen/dist/templates/simple-js/config.js +0 -43
  26. package/node_modules/@turbo/gen/dist/templates/simple-js/templates/turborepo-generators.hbs +0 -5
  27. package/node_modules/@turbo/gen/dist/templates/simple-ts/config.ts +0 -45
  28. package/node_modules/@turbo/gen/dist/templates/simple-ts/templates/turborepo-generators.hbs +0 -5
  29. package/node_modules/@turbo/gen/dist/types.d.ts +0 -2
  30. package/node_modules/@turbo/gen/dist/types.js +0 -1
  31. package/node_modules/@turbo/gen/package.json +0 -57
@@ -1,43 +0,0 @@
1
- module.exports = function generator(plop) {
2
- plop.setGenerator("example", {
3
- description:
4
- "An example Turborepo generator - creates a new file at the root of the project",
5
- prompts: [
6
- {
7
- type: "input",
8
- name: "file",
9
- message: "What is the name of the new file to create?",
10
- validate: (input) => {
11
- if (input.includes(".")) {
12
- return "file name cannot include an extension";
13
- }
14
- if (input.includes(" ")) {
15
- return "file name cannot include spaces";
16
- }
17
- if (!input) {
18
- return "file name is required";
19
- }
20
- return true;
21
- },
22
- },
23
- {
24
- type: "list",
25
- name: "type",
26
- message: "What type of file should be created?",
27
- choices: [".md", ".txt"],
28
- },
29
- {
30
- type: "input",
31
- name: "title",
32
- message: "What should be the title of the new file?",
33
- },
34
- ],
35
- actions: [
36
- {
37
- type: "add",
38
- path: "{{ turbo.paths.root }}/{{ dashCase file }}{{ type }}",
39
- templateFile: "templates/turborepo-generators.hbs",
40
- },
41
- ],
42
- });
43
- };
@@ -1,5 +0,0 @@
1
- # {{ title }}
2
-
3
- ### Created with Turborepo Generators
4
-
5
- Read the docs at [turbo.build](https://turbo.build/repo/docs/core-concepts/monorepos/code-generation).
@@ -1,45 +0,0 @@
1
- import { PlopTypes } from "@turbo/gen";
2
-
3
- export default function generator(plop: PlopTypes.NodePlopAPI): void {
4
- plop.setGenerator("example", {
5
- description:
6
- "An example Turborepo generator - creates a new file at the root of the project",
7
- prompts: [
8
- {
9
- type: "input",
10
- name: "file",
11
- message: "What is the name of the new file to create?",
12
- validate: (input: string) => {
13
- if (input.includes(".")) {
14
- return "file name cannot include an extension";
15
- }
16
- if (input.includes(" ")) {
17
- return "file name cannot include spaces";
18
- }
19
- if (!input) {
20
- return "file name is required";
21
- }
22
- return true;
23
- },
24
- },
25
- {
26
- type: "list",
27
- name: "type",
28
- message: "What type of file should be created?",
29
- choices: [".md", ".txt"],
30
- },
31
- {
32
- type: "input",
33
- name: "title",
34
- message: "What should be the title of the new file?",
35
- },
36
- ],
37
- actions: [
38
- {
39
- type: "add",
40
- path: "{{ turbo.paths.root }}/{{ dashCase file }}{{ type }}",
41
- templateFile: "templates/turborepo-generators.hbs",
42
- },
43
- ],
44
- });
45
- }
@@ -1,5 +0,0 @@
1
- # {{ title }}
2
-
3
- ### Created with Turborepo Generators
4
-
5
- Read the docs at [turbo.build](https://turbo.build/repo/docs/core-concepts/monorepos/code-generation).
@@ -1,2 +0,0 @@
1
- import * as nodePlop from 'node-plop';
2
- export { nodePlop as PlopTypes };
@@ -1 +0,0 @@
1
- "use strict";var y=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var P=(o,p,l,t)=>{if(p&&typeof p=="object"||typeof p=="function")for(let e of s(p))!m.call(o,e)&&e!==l&&y(o,e,{get:()=>p[e],enumerable:!(t=r(p,e))||t.enumerable});return o};var T=o=>P(y({},"__esModule",{value:!0}),o);var a={};module.exports=T(a);
@@ -1,57 +0,0 @@
1
- {
2
- "name": "@turbo/gen",
3
- "version": "1.12.5",
4
- "description": "Extend a Turborepo",
5
- "homepage": "https://turbo.build/repo",
6
- "license": "MPL-2.0",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/vercel/turbo",
10
- "directory": "packages/turbo-gen"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/vercel/turbo/issues"
14
- },
15
- "bin": "dist/cli.js",
16
- "types": "dist/types.d.ts",
17
- "dependencies": {
18
- "chalk": "2.4.2",
19
- "commander": "^10.0.0",
20
- "fs-extra": "^10.1.0",
21
- "inquirer": "^8.2.4",
22
- "minimatch": "^9.0.0",
23
- "node-plop": "^0.26.3",
24
- "proxy-agent": "^6.2.2",
25
- "ts-node": "^10.9.1",
26
- "update-check": "^1.5.4",
27
- "validate-npm-package-name": "^5.0.0",
28
- "@turbo/workspaces": "1.12.5"
29
- },
30
- "devDependencies": {
31
- "@types/fs-extra": "^9.0.13",
32
- "@types/inquirer": "^8.2.5",
33
- "@types/jest": "^27.4.0",
34
- "@types/node": "^18.17.2",
35
- "@types/validate-npm-package-name": "^4.0.0",
36
- "jest": "^27.4.3",
37
- "ts-jest": "^27.1.1",
38
- "tsup": "^6.7.0",
39
- "typescript": "5.3.3",
40
- "@turbo/eslint-config": "0.0.0",
41
- "@turbo/test-utils": "0.0.0",
42
- "@turbo/tsconfig": "0.0.0",
43
- "@turbo/utils": "0.0.0"
44
- },
45
- "files": [
46
- "dist"
47
- ],
48
- "publishConfig": {
49
- "access": "public"
50
- },
51
- "scripts": {
52
- "build": "tsup",
53
- "test": "jest",
54
- "lint": "eslint src/",
55
- "check-types": "tsc --noEmit"
56
- }
57
- }