From 5fcba0a28bce0aea0900988c22dfdde30704b44e Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Sat, 21 Dec 2019 22:07:15 +0800 Subject: [PATCH] rename dir --- .gitignore => doric-demo/.gitignore | 0 {.vscode => doric-demo/.vscode}/launch.json | 0 {.vscode => doric-demo/.vscode}/tasks.json | 0 LICENSE => doric-demo/LICENSE | 0 README.md => doric-demo/README.md | 0 index.ts => doric-demo/index.ts | 0 package-lock.json => doric-demo/package-lock.json | 0 package.json => doric-demo/package.json | 0 rollup.config.js => doric-demo/rollup.config.js | 0 {src => doric-demo/src}/AnimatorDemo.ts | 0 {src => doric-demo/src}/ComplicatedAnimations.ts | 0 {src => doric-demo/src}/ComplicatedDemo.ts | 0 {src => doric-demo/src}/Counter.ts | 0 {src => doric-demo/src}/EffectsDemo.ts | 0 {src => doric-demo/src}/FlowLayoutDemo.ts | 0 {src => doric-demo/src}/Gobang.ts | 0 {src => doric-demo/src}/ImageDemo.ts | 0 {src => doric-demo/src}/InputDemo.ts | 0 {src => doric-demo/src}/LayoutDemo.ts | 0 {src => doric-demo/src}/ListDemo.ts | 0 {src => doric-demo/src}/ModalDemo.ts | 0 {src => doric-demo/src}/NavbarDemo.ts | 0 {src => doric-demo/src}/NavigatorDemo.ts | 0 {src => doric-demo/src}/NetworkDemo.ts | 0 {src => doric-demo/src}/PopoverDemo.ts | 0 {src => doric-demo/src}/RefreshableDemo.ts | 0 {src => doric-demo/src}/ScrollerDemo.ts | 0 {src => doric-demo/src}/SliderDemo.ts | 0 {src => doric-demo/src}/Snake.ts | 0 {src => doric-demo/src}/StickDemo.ts | 0 {src => doric-demo/src}/StorageDemo.ts | 0 {src => doric-demo/src}/image_base64.ts | 0 {src => doric-demo/src}/utils.ts | 0 tsconfig.json => doric-demo/tsconfig.json | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => doric-demo/.gitignore (100%) rename {.vscode => doric-demo/.vscode}/launch.json (100%) rename {.vscode => doric-demo/.vscode}/tasks.json (100%) rename LICENSE => doric-demo/LICENSE (100%) rename README.md => doric-demo/README.md (100%) rename index.ts => doric-demo/index.ts (100%) rename package-lock.json => doric-demo/package-lock.json (100%) rename package.json => doric-demo/package.json (100%) rename rollup.config.js => doric-demo/rollup.config.js (100%) rename {src => doric-demo/src}/AnimatorDemo.ts (100%) rename {src => doric-demo/src}/ComplicatedAnimations.ts (100%) rename {src => doric-demo/src}/ComplicatedDemo.ts (100%) rename {src => doric-demo/src}/Counter.ts (100%) rename {src => doric-demo/src}/EffectsDemo.ts (100%) rename {src => doric-demo/src}/FlowLayoutDemo.ts (100%) rename {src => doric-demo/src}/Gobang.ts (100%) rename {src => doric-demo/src}/ImageDemo.ts (100%) rename {src => doric-demo/src}/InputDemo.ts (100%) rename {src => doric-demo/src}/LayoutDemo.ts (100%) rename {src => doric-demo/src}/ListDemo.ts (100%) rename {src => doric-demo/src}/ModalDemo.ts (100%) rename {src => doric-demo/src}/NavbarDemo.ts (100%) rename {src => doric-demo/src}/NavigatorDemo.ts (100%) rename {src => doric-demo/src}/NetworkDemo.ts (100%) rename {src => doric-demo/src}/PopoverDemo.ts (100%) rename {src => doric-demo/src}/RefreshableDemo.ts (100%) rename {src => doric-demo/src}/ScrollerDemo.ts (100%) rename {src => doric-demo/src}/SliderDemo.ts (100%) rename {src => doric-demo/src}/Snake.ts (100%) rename {src => doric-demo/src}/StickDemo.ts (100%) rename {src => doric-demo/src}/StorageDemo.ts (100%) rename {src => doric-demo/src}/image_base64.ts (100%) rename {src => doric-demo/src}/utils.ts (100%) rename tsconfig.json => doric-demo/tsconfig.json (100%) diff --git a/.gitignore b/doric-demo/.gitignore similarity index 100% rename from .gitignore rename to doric-demo/.gitignore diff --git a/.vscode/launch.json b/doric-demo/.vscode/launch.json similarity index 100% rename from .vscode/launch.json rename to doric-demo/.vscode/launch.json diff --git a/.vscode/tasks.json b/doric-demo/.vscode/tasks.json similarity index 100% rename from .vscode/tasks.json rename to doric-demo/.vscode/tasks.json diff --git a/LICENSE b/doric-demo/LICENSE similarity index 100% rename from LICENSE rename to doric-demo/LICENSE diff --git a/README.md b/doric-demo/README.md similarity index 100% rename from README.md rename to doric-demo/README.md diff --git a/index.ts b/doric-demo/index.ts similarity index 100% rename from index.ts rename to doric-demo/index.ts diff --git a/package-lock.json b/doric-demo/package-lock.json similarity index 100% rename from package-lock.json rename to doric-demo/package-lock.json diff --git a/package.json b/doric-demo/package.json similarity index 100% rename from package.json rename to doric-demo/package.json diff --git a/rollup.config.js b/doric-demo/rollup.config.js similarity index 100% rename from rollup.config.js rename to doric-demo/rollup.config.js diff --git a/src/AnimatorDemo.ts b/doric-demo/src/AnimatorDemo.ts similarity index 100% rename from src/AnimatorDemo.ts rename to doric-demo/src/AnimatorDemo.ts diff --git a/src/ComplicatedAnimations.ts b/doric-demo/src/ComplicatedAnimations.ts similarity index 100% rename from src/ComplicatedAnimations.ts rename to doric-demo/src/ComplicatedAnimations.ts diff --git a/src/ComplicatedDemo.ts b/doric-demo/src/ComplicatedDemo.ts similarity index 100% rename from src/ComplicatedDemo.ts rename to doric-demo/src/ComplicatedDemo.ts diff --git a/src/Counter.ts b/doric-demo/src/Counter.ts similarity index 100% rename from src/Counter.ts rename to doric-demo/src/Counter.ts diff --git a/src/EffectsDemo.ts b/doric-demo/src/EffectsDemo.ts similarity index 100% rename from src/EffectsDemo.ts rename to doric-demo/src/EffectsDemo.ts diff --git a/src/FlowLayoutDemo.ts b/doric-demo/src/FlowLayoutDemo.ts similarity index 100% rename from src/FlowLayoutDemo.ts rename to doric-demo/src/FlowLayoutDemo.ts diff --git a/src/Gobang.ts b/doric-demo/src/Gobang.ts similarity index 100% rename from src/Gobang.ts rename to doric-demo/src/Gobang.ts diff --git a/src/ImageDemo.ts b/doric-demo/src/ImageDemo.ts similarity index 100% rename from src/ImageDemo.ts rename to doric-demo/src/ImageDemo.ts diff --git a/src/InputDemo.ts b/doric-demo/src/InputDemo.ts similarity index 100% rename from src/InputDemo.ts rename to doric-demo/src/InputDemo.ts diff --git a/src/LayoutDemo.ts b/doric-demo/src/LayoutDemo.ts similarity index 100% rename from src/LayoutDemo.ts rename to doric-demo/src/LayoutDemo.ts diff --git a/src/ListDemo.ts b/doric-demo/src/ListDemo.ts similarity index 100% rename from src/ListDemo.ts rename to doric-demo/src/ListDemo.ts diff --git a/src/ModalDemo.ts b/doric-demo/src/ModalDemo.ts similarity index 100% rename from src/ModalDemo.ts rename to doric-demo/src/ModalDemo.ts diff --git a/src/NavbarDemo.ts b/doric-demo/src/NavbarDemo.ts similarity index 100% rename from src/NavbarDemo.ts rename to doric-demo/src/NavbarDemo.ts diff --git a/src/NavigatorDemo.ts b/doric-demo/src/NavigatorDemo.ts similarity index 100% rename from src/NavigatorDemo.ts rename to doric-demo/src/NavigatorDemo.ts diff --git a/src/NetworkDemo.ts b/doric-demo/src/NetworkDemo.ts similarity index 100% rename from src/NetworkDemo.ts rename to doric-demo/src/NetworkDemo.ts diff --git a/src/PopoverDemo.ts b/doric-demo/src/PopoverDemo.ts similarity index 100% rename from src/PopoverDemo.ts rename to doric-demo/src/PopoverDemo.ts diff --git a/src/RefreshableDemo.ts b/doric-demo/src/RefreshableDemo.ts similarity index 100% rename from src/RefreshableDemo.ts rename to doric-demo/src/RefreshableDemo.ts diff --git a/src/ScrollerDemo.ts b/doric-demo/src/ScrollerDemo.ts similarity index 100% rename from src/ScrollerDemo.ts rename to doric-demo/src/ScrollerDemo.ts diff --git a/src/SliderDemo.ts b/doric-demo/src/SliderDemo.ts similarity index 100% rename from src/SliderDemo.ts rename to doric-demo/src/SliderDemo.ts diff --git a/src/Snake.ts b/doric-demo/src/Snake.ts similarity index 100% rename from src/Snake.ts rename to doric-demo/src/Snake.ts diff --git a/src/StickDemo.ts b/doric-demo/src/StickDemo.ts similarity index 100% rename from src/StickDemo.ts rename to doric-demo/src/StickDemo.ts diff --git a/src/StorageDemo.ts b/doric-demo/src/StorageDemo.ts similarity index 100% rename from src/StorageDemo.ts rename to doric-demo/src/StorageDemo.ts diff --git a/src/image_base64.ts b/doric-demo/src/image_base64.ts similarity index 100% rename from src/image_base64.ts rename to doric-demo/src/image_base64.ts diff --git a/src/utils.ts b/doric-demo/src/utils.ts similarity index 100% rename from src/utils.ts rename to doric-demo/src/utils.ts diff --git a/tsconfig.json b/doric-demo/tsconfig.json similarity index 100% rename from tsconfig.json rename to doric-demo/tsconfig.json